Skip to content

Commit

Permalink
chore: updates CI action
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Jaeger committed Sep 1, 2024
1 parent ae3edf3 commit 73ffe49
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,25 @@ jobs:
os: ubuntu-20.04
target: x86_64-unknown-linux-musl
bin: secret-service
name: precious-Linux-x86_64-musl.tar.gz
name: secret-service-Linux-x86_64-musl.tar.gz
- release_for: Linux-aarch64
os_name: Linux-aarch64
os: ubuntu-20.04
target: aarch64-unknown-linux-musl
bin: secret-service
name: precious-Linux-aarch64-musl.tar.gz
name: secret-service-Linux-aarch64-musl.tar.gz
# - release_for: Windows-x86_64
# os: windows-latest
# target: x86_64-pc-windows-msvc
# bin: secret-service.exe
# name: precious-Windows-x86_64.zip
# name: secret-service-Windows-x86_64.zip
# command: both
- release_for: MacOS-aarch64
os_name: macOS-aarch64
os: macOS-latest
target: aarch64-apple-darwin
bin: precious
name: precious-Darwin-aarch64.tar.gz
bin: secret-service
name: secret-service-Darwin-aarch64.tar.gz

runs-on: ${{ matrix.platform.os }}
steps:
Expand Down Expand Up @@ -69,8 +69,8 @@ jobs:
- name: Publish release artifacts
uses: actions/upload-artifact@v4
with:
name: precious-${{ matrix.platform.os_name }}
path: "precious-*"
name: secret-service-${{ matrix.platform.os_name }}
path: "secret-service-*"
if: matrix.toolchain == 'stable' && github.ref == 'refs/tags/test-release'
- name: Generate SHA-256
run: shasum -a 256 ${{ matrix.platform.name }}
Expand All @@ -83,6 +83,6 @@ jobs:
uses: softprops/action-gh-release@v2
with:
draft: true
files: "precious-*"
body_path: Changes.md
files: "secret-service-*"
body_path: CHANGELOG.adoc
if: matrix.toolchain == 'stable' && startsWith( github.ref, 'refs/tags/v' )

0 comments on commit 73ffe49

Please sign in to comment.