diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b4bc50..db0b215 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,7 @@ on: branches: [master] pull_request: branches: [master] + workflow_dispatch: jobs: build: @@ -143,7 +144,7 @@ jobs: - uses: actions/upload-artifact@v4 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: name: "${{ env.ARTIFACT_NAME }}" path: "extension/build/package/"