From d2703f337101e68ae2879da15cb14d177a481f16 Mon Sep 17 00:00:00 2001 From: Lieven Hey Date: Wed, 15 May 2024 10:47:39 +0200 Subject: [PATCH] ci: rename artifacts before uploading in continuous build This creates a stable download url where the newest version can always be downloaded. --- .github/workflows/release-appimage.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release-appimage.yml b/.github/workflows/release-appimage.yml index 53c9fb78..61403479 100644 --- a/.github/workflows/release-appimage.yml +++ b/.github/workflows/release-appimage.yml @@ -25,6 +25,11 @@ jobs: env: GH_TOKEN: ${{ github.token }} + - name: Rename artifacts + run: | + cd ${{ github.workspace }} && mv hotspot-*.AppImage hotspot-continuous.AppImage + cd ${{ github.workspace }} && mv hotspot-debuginfo-*.tar.bz2 hotspot-debuginfo-continuous.tar.bz2 + - name: Create latest release uses: ncipollo/release-action@v1 with: