env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
- tag_name: linux-${{ github.sha }}
- release_name: release-${{ github.ref }}
+ tag_name: gwion-linux-${{ github.sha }}
+ release_name: gwion-release-${{ github.ref }}
body: |
Generated by github actions
draft: false
prerelease: false
- name: Compress
- run: tar -czvf linux.tar.gz ./gwion
+ run: tar -czvf gwion-linux.tar.gz ./gwion
- name: Upload Release Asset
id: upload-release-asset
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
- asset_path: ./linux.tar.gz
- asset_name: linux.tar.gz
+ asset_path: ./gwion-linux.tar.gz
+ asset_name: gwion-linux.tar.gz
asset_content_type: application/gzip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
- tag_name: windows-${{ github.sha }}
- release_name: release-${{ github.ref }}
+ tag_name: gwion-windows-${{ github.sha }}
+ release_name: gwion-release-${{ github.ref }}
body: |
Generated by github actions
draft: false