This commit is contained in:
Seunghoon Lee 2024-02-20 22:29:13 +09:00
commit 88ee30fde6
No known key found for this signature in database
GPG key ID: 436E38F4E70BD152

View file

@ -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.
@ -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