Skip to content

Commit

Permalink
Fix release artifacts handling
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsen1 committed Jan 12, 2025
1 parent f3fde9d commit 3de5e19
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,15 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v3
with:
path: artifacts
- name: List artifacts
run: ls -R artifacts
- name: Move artifacts
run: |
mv artifacts/*/*.tar.gz ./
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: |
yek-x86_64-unknown-linux-gnu.tar.gz
yek-x86_64-apple-darwin.tar.gz
yek-aarch64-apple-darwin.tar.gz
*.tar.gz

0 comments on commit 3de5e19

Please sign in to comment.