From d3d47453276f2849429a90dc5f96888bfad823e5 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Tue, 17 May 2022 16:26:58 +0200 Subject: [PATCH] Prefix release tags with "rev-" to distinguish them from git revisions This is an experiment to see if that fixes the bug of the 404 responses from https://github.com/dfinity/icx-proxy/releases. --- .github/workflows/release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ad732d4..40ad1a1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -149,13 +149,12 @@ jobs: repo_token: ${{ secrets.GITHUB_TOKEN }} file: binaries.tar.gz asset_name: binaries-${{ matrix.name }}.tar.gz - tag: ${{ env.SHA_SHORT }} + tag: rev-${{ env.SHA_SHORT }} - name: Upload deb uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: icx-proxy.deb - tag: ${{ env.SHA_SHORT }} + tag: rev-${{ env.SHA_SHORT }} if: contains(matrix.target, 'linux-musl') -