Skip to content

Commit

Permalink
fix(.github): artifact name for artifacts in release (#277)
Browse files Browse the repository at this point in the history
Signed-off-by: KeisukeYamashita <[email protected]>
  • Loading branch information
KeisukeYamashita authored Feb 14, 2024
1 parent db42ce9 commit 1a34e5b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
fail-fast: true
matrix:
config:
# See details fore GitHub Actions runners
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners
- os: ubuntu-20.04
rust_target: x86_64-unknown-linux-gnu
ext: ""
Expand All @@ -28,7 +30,7 @@ jobs:
rust_target: x86_64-apple-darwin
ext: ""
args: ""
- os: macos-latest
- os: macos-14 # beta (Apple Silicon)
rust_target: aarch64-apple-darwin
ext: ""
args: ""
Expand All @@ -55,7 +57,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: commitlint-${{ matrix.config.os }}
name: commitlint-${{ matrix.config.rust_target }}
path: commitlint-${{ github.ref_name }}-${{ matrix.config.rust_target }}.tar.gz
if-no-files-found: error

Expand Down

0 comments on commit 1a34e5b

Please sign in to comment.