From 9d22cec3b2c8f66ba56d354755d9f9a4d7cd0c64 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Sun, 28 Feb 2021 15:35:58 +0100 Subject: [PATCH] :art: Improve releases --- .github/workflows/linux-release.yml | 10 +++++----- .github/workflows/windows-release.yml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) 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 -- 2.43.0