Upload artifacts on manual CI runs.

This commit is contained in:
Ryan Stecker 2024-05-05 16:42:30 -05:00
parent a0720d19d8
commit 73a39de0e9

View File

@ -144,7 +144,7 @@ jobs:
- uses: actions/upload-artifact@v4 - uses: actions/upload-artifact@v4
name: Upload artifacts name: Upload artifacts
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && (startsWith(matrix.os, 'windows-latest') || startsWith(matrix.os, 'ubuntu-latest')) if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && (startsWith(matrix.os, 'windows-latest') || startsWith(matrix.os, 'ubuntu-latest'))
with: with:
name: "${{ env.ARTIFACT_NAME }}" name: "${{ env.ARTIFACT_NAME }}"
path: "extension/build/package/" path: "extension/build/package/"