diff --git a/.github/workflows/insider-macos.yml b/.github/workflows/insider-macos.yml index fe9d25b..20670bd 100644 --- a/.github/workflows/insider-macos.yml +++ b/.github/workflows/insider-macos.yml @@ -102,6 +102,14 @@ jobs: run: ./update_version.sh if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes' + - name: Upload assets + uses: actions/upload-artifact@v3 + with: + name: bin-${{ matrix.vscode_arch }} + path: assets/ + retention-days: 3 + if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'no' && github.event.inputs.generate_assets == 'true' + - name: Clean up keychain if: always() run: | diff --git a/.github/workflows/insider-windows.yml b/.github/workflows/insider-windows.yml index c6e84d4..e5cbf6a 100644 --- a/.github/workflows/insider-windows.yml +++ b/.github/workflows/insider-windows.yml @@ -107,6 +107,14 @@ jobs: run: ./update_version.sh if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes' + - name: Upload assets + uses: actions/upload-artifact@v3 + with: + name: bin-${{ matrix.vscode_arch }} + path: assets/ + retention-days: 3 + if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'no' && github.event.inputs.generate_assets == 'true' + winget: needs: build runs-on: windows-latest diff --git a/.github/workflows/stable-macos.yml b/.github/workflows/stable-macos.yml index 5583b53..7045500 100644 --- a/.github/workflows/stable-macos.yml +++ b/.github/workflows/stable-macos.yml @@ -97,6 +97,14 @@ jobs: run: ./update_version.sh if: env.SHOULD_DEPLOY == 'yes' + - name: Upload assets + uses: actions/upload-artifact@v3 + with: + name: bin-${{ matrix.vscode_arch }} + path: assets/ + retention-days: 3 + if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'no' && github.event.inputs.generate_assets == 'true' + - name: Clean up keychain if: always() run: | diff --git a/.github/workflows/stable-windows.yml b/.github/workflows/stable-windows.yml index a953d1a..3fb2169 100644 --- a/.github/workflows/stable-windows.yml +++ b/.github/workflows/stable-windows.yml @@ -104,6 +104,14 @@ jobs: run: ./update_version.sh if: env.SHOULD_DEPLOY == 'yes' + - name: Upload assets + uses: actions/upload-artifact@v3 + with: + name: bin-${{ matrix.vscode_arch }} + path: assets/ + retention-days: 3 + if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'no' && github.event.inputs.generate_assets == 'true' + winget: needs: build runs-on: windows-latest