From 0f43c67aab1751a5bf806cd7cf2593da07804deb Mon Sep 17 00:00:00 2001 From: koalasat Date: Fri, 18 Oct 2024 18:05:26 +0200 Subject: [PATCH 1/2] Fix desktop release --- .github/workflows/desktop-build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/desktop-build.yml b/.github/workflows/desktop-build.yml index 319ee07d..ab5a6517 100644 --- a/.github/workflows/desktop-build.yml +++ b/.github/workflows/desktop-build.yml @@ -72,8 +72,8 @@ jobs: - name: Upload macOS Build Artifact id: upload-release-mac-zip-asset - uses: actions/upload-artifact@v4 if: inputs.semver != '' + uses: actions/upload-artifact@v4 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -82,8 +82,8 @@ jobs: - name: Upload Windows Build Artifact id: upload-release-win-zip-asset - uses: actions/upload-artifact@v4 if: inputs.semver != '' + uses: actions/upload-artifact@v4 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -92,8 +92,8 @@ jobs: - name: Upload Linux Build Artifact id: upload-release-linux-zip-asset - uses: actions/upload-artifact@v4 if: inputs.semver != '' + uses: actions/upload-artifact@v4 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -102,8 +102,8 @@ jobs: - name: Upload macOS Build Artifact id: upload-release-mac-zip-asset - uses: actions/upload-artifact@v4 if: inputs.semver == '' + uses: actions/upload-artifact@v4 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -112,8 +112,8 @@ jobs: - name: Upload Windows Build Artifact id: upload-release-win-zip-asset - uses: actions/upload-artifact@v4 if: inputs.semver == '' + uses: actions/upload-artifact@v4 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -122,8 +122,8 @@ jobs: - name: Upload Linux Build Artifact id: upload-release-linux-zip-asset - uses: actions/upload-artifact@v4 if: inputs.semver == '' + uses: actions/upload-artifact@v4 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: From da6e4a0263ab9b7de4cb05356e93ffb440c706ce Mon Sep 17 00:00:00 2001 From: koalasat Date: Fri, 18 Oct 2024 18:07:27 +0200 Subject: [PATCH 2/2] Fix yml --- .github/workflows/desktop-build.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/desktop-build.yml b/.github/workflows/desktop-build.yml index ab5a6517..df07685a 100644 --- a/.github/workflows/desktop-build.yml +++ b/.github/workflows/desktop-build.yml @@ -71,7 +71,6 @@ jobs: run: echo The semver is ${{ github.event.inputs.semver }} - name: Upload macOS Build Artifact - id: upload-release-mac-zip-asset if: inputs.semver != '' uses: actions/upload-artifact@v4 env: @@ -81,7 +80,6 @@ jobs: name: robosats-desktop-${{ inputs.semver }}-mac-darwin-x64 - name: Upload Windows Build Artifact - id: upload-release-win-zip-asset if: inputs.semver != '' uses: actions/upload-artifact@v4 env: @@ -91,7 +89,6 @@ jobs: name: robosats-desktop-${{ inputs.semver }}-win32-ia32 - name: Upload Linux Build Artifact - id: upload-release-linux-zip-asset if: inputs.semver != '' uses: actions/upload-artifact@v4 env: