From: Jérémie Astor Date: Sun, 28 Feb 2021 14:35:58 +0000 (+0100) Subject: :art: Improve releases X-Git-Tag: nightly~908 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=9d22cec3b2c8f66ba56d354755d9f9a4d7cd0c64;p=gwion.git :art: Improve releases --- diff --git a/.github/workflows/linux-release.yml b/.github/workflows/linux-release.yml index e2c9e706..52df2f6d 100644 --- a/.github/workflows/linux-release.yml +++ b/.github/workflows/linux-release.yml @@ -29,15 +29,15 @@ jobs: 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 @@ -46,6 +46,6 @@ jobs: 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 diff --git a/.github/workflows/windows-release.yml b/.github/workflows/windows-release.yml index fab38caf..45b8b3ea 100644 --- a/.github/workflows/windows-release.yml +++ b/.github/workflows/windows-release.yml @@ -30,8 +30,8 @@ jobs: 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