From 6a662ea9e9272ec962788edfc164807c91bd5486 Mon Sep 17 00:00:00 2001 From: Axtel Sturnclaw Date: Mon, 3 Feb 2025 16:34:05 -0500 Subject: [PATCH] build-ci: pass tag_name variable, upload MSVC artifacts to release --- .github/workflows/build-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-ci.yml b/.github/workflows/build-ci.yml index 80cae77720..eea32b8ef0 100644 --- a/.github/workflows/build-ci.yml +++ b/.github/workflows/build-ci.yml @@ -99,7 +99,7 @@ jobs: - name: Upload Release Files uses: softprops/action-gh-release@v1 - if: ${{ github.event_name == 'release' }} + if: ${{ github.event_name == 'release' || github.event_name == 'workflow_dispatch' }} with: files: pioneer/pioneer-*-win.exe tag_name: ${{ inputs.tag_name || github.ref_name }} @@ -140,6 +140,7 @@ jobs: build_slug: linux-x64-release token: ${{ secrets.GITHUB_TOKEN }} upload_release: true + tag_name: ${{ inputs.tag_name }} build-clang: runs-on: ubuntu-20.04 @@ -204,3 +205,4 @@ jobs: build_slug: linux-x64-release-appimage token: ${{ secrets.GITHUB_TOKEN }} upload_release: true + tag_name: ${{ inputs.tag_name }}