Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/lshqqytiger/ZLUDA
Browse files Browse the repository at this point in the history
  • Loading branch information
lshqqytiger committed Feb 20, 2024
2 parents 7d33957 + 9036dcd commit 88ee30f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ jobs:
- name: Prepare for release
run: |
cd ./target/release
tar -czvf ZLUDA-linux-amd64.tar.gz ./*.so*
tar -czvf ZLUDA-linux-amd64.tar.gz *.so*
- name: Create Release
uses: actions/create-release@v1
id: create_release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: linux
tag_name: linux.${{ github.sha }}
release_name: Generated release
body: |
This release is automatically generated by GitHub Actions and not tested.
Expand All @@ -63,7 +63,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./ZLUDA-linux-amd64.tar.gz
asset_path: ./target/release/ZLUDA-linux-amd64.tar.gz
asset_name: ZLUDA-linux-amd64.tar.gz
asset_content_type: application/gzip

Expand Down

0 comments on commit 88ee30f

Please sign in to comment.