From a04cd67eaa84f2fa6b45600e6ffd32ad0820bd91 Mon Sep 17 00:00:00 2001 From: Vladimir Dubrovin <3proxy@3proxy.ru> Date: Sat, 4 Jul 2026 14:15:01 +0300 Subject: [PATCH] Fix release artefact uploads in Windows workflows --- .github/workflows/build-watcom.yml | 1 + .github/workflows/build-win32.yml | 1 + .github/workflows/build-win64.yml | 1 + .github/workflows/build-winarm64.yml | 1 + 4 files changed, 4 insertions(+) diff --git a/.github/workflows/build-watcom.yml b/.github/workflows/build-watcom.yml index 1d3835e..9f6e1ed 100644 --- a/.github/workflows/build-watcom.yml +++ b/.github/workflows/build-watcom.yml @@ -88,6 +88,7 @@ jobs: run: Compress-Archive -Path dist/* -DestinationPath 3proxy-${{ env.RELEASE }}-lite.zip - name: Upload to release if: github.event_name == 'release' + shell: bash env: GH_TOKEN: ${{ github.token }} TAG: ${{ github.event.release.tag_name }} diff --git a/.github/workflows/build-win32.yml b/.github/workflows/build-win32.yml index 9b98209..19edbfd 100644 --- a/.github/workflows/build-win32.yml +++ b/.github/workflows/build-win32.yml @@ -103,6 +103,7 @@ jobs: run: Compress-Archive -Path dist/* -DestinationPath 3proxy-${{ env.RELEASE }}-x86.zip - name: Upload to release if: github.event_name == 'release' + shell: bash env: GH_TOKEN: ${{ github.token }} TAG: ${{ github.event.release.tag_name }} diff --git a/.github/workflows/build-win64.yml b/.github/workflows/build-win64.yml index 520df69..5c3e5b3 100644 --- a/.github/workflows/build-win64.yml +++ b/.github/workflows/build-win64.yml @@ -104,6 +104,7 @@ jobs: run: Compress-Archive -Path dist/* -DestinationPath 3proxy-${{ env.RELEASE }}-x64.zip - name: Upload to release if: github.event_name == 'release' + shell: bash env: GH_TOKEN: ${{ github.token }} TAG: ${{ github.event.release.tag_name }} diff --git a/.github/workflows/build-winarm64.yml b/.github/workflows/build-winarm64.yml index bf2d5d4..b6dfc0f 100644 --- a/.github/workflows/build-winarm64.yml +++ b/.github/workflows/build-winarm64.yml @@ -103,6 +103,7 @@ jobs: run: Compress-Archive -Path dist/* -DestinationPath 3proxy-${{ env.RELEASE }}-arm64.zip - name: Upload to release if: github.event_name == 'release' + shell: bash env: GH_TOKEN: ${{ github.token }} TAG: ${{ github.event.release.tag_name }}