Skip to content

Commit

Permalink
Update release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
tbsklg committed Aug 18, 2024
1 parent 6d78841 commit 132e54a
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,21 +99,32 @@ jobs:
- name: Download arm64 tarball
uses: actions/download-artifact@v4
with:
name: ./cli-client/artifacts/strikes-${{ env.VERSION }}-aarch64-unknown-linux-musl.tar.gz
name: strikes-${{ env.VERSION }}-aarch64-unknown-linux-musl

- name: Download x86_64_apple_darwin tarball
uses: actions/download-artifact@v4
with:
name: ./cli-client/artifacts/strikes-${{ env.VERSION }}-x86_64-apple-darwin.tar.gz
name: strikes-${{ env.VERSION }}-x86_64-apple-darwin.tar.gz

- name: Release x86_64 tarball
- name: Download x86_64 tarball
uses: actions/download-artifact@v4
with:
name: strikes-${{ env.VERSION }}-x86_64-unknown-linux-musl

- name: Release arm64 tarball
uses: softprops/action-gh-release@v1
with:
files: |
strikes-${{ env.VERSION }}-x86_64-unkown-linux-musl.tar.gz
strikes-${{ env.VERSION }}-aarch64-unknown-linux-musl
- name: Release x86_64_apple_darwin tarball
uses: softprops/action-gh-release@v1
with:
files: |
strikes-${{ env.VERSION }}-x86_64-apple-darwin
- name: Release x86_64 tarball
uses: softprops/action-gh-release@v1
with:
files: |
strikes-${{ env.VERSION }}-x86_64-apple-darwin.tar.gz
strikes-${{ env.VERSION }}-x86_64-unknown-linux-musl

0 comments on commit 132e54a

Please sign in to comment.