From de2f19fbea27bf28d609ecaa838fa1b4c2cb10b5 Mon Sep 17 00:00:00 2001 From: Chad Smith Date: Thu, 20 May 2021 00:16:05 -0700 Subject: [PATCH] remove if clause when uploading executables --- .github/workflows/release.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2670454f..a6ecb21a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,6 @@ jobs: run: | nox --non-interactive --session build_executable_linux - name: Upload linux executable - if: github.ref == 'refs/heads/master' uses: actions/upload-artifact@v1 with: name: gdbgui_linux @@ -41,7 +40,6 @@ jobs: run: | nox --non-interactive --session build_executable_mac - name: Upload mac executable - if: github.ref == 'refs/heads/master' uses: actions/upload-artifact@v1 with: name: gdbgui_mac @@ -63,7 +61,6 @@ jobs: run: | nox --non-interactive --session build_executable_windows - name: Upload windows executable - if: github.ref == 'refs/heads/master' uses: actions/upload-artifact@v1 with: name: gdbgui_windows