Skip to content

Commit

Permalink
fix file names
Browse files Browse the repository at this point in the history
  • Loading branch information
tushar-deepsource committed Oct 12, 2024
1 parent e00e129 commit 804663a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:

- name: Create tar ball
run: |
tar -czf "$HOME/${{ matrix.output }}" --directory=$HOME/rubies/ruby-3.2 .
tar -czf "$HOME/ruby-3.2-linux-x86.tar.gz" --directory=$HOME/rubies/ruby-3.2 .
- name: Upload articact
uses: actions/upload-artifact@master
with:
name: ${{ matrix.output }}
path: $HOME/${{ matrix.output }}
name: ruby-3.2-linux-x86.tar.gz
path: $HOME/ruby-3.2-linux-x86.tar.gz
8 changes: 6 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,13 @@ jobs:
- {
name: MacOS-intel,
os: macos-13,
output: "ruby-3.2-macos-intel.tar.gz",
output: "ruby-3.2-macos-x86.tar.gz",
}
- {
name: MacOS-M1,
os: macos-14,
output: "ruby-3.2-macos-arm64.tar.gz",
}
- { name: MacOS-M1, os: macos-14, output: "ruby-3.2-macos-m1.tar.gz" }
steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit 804663a

Please sign in to comment.