We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 95b31dd + ce0e1b0 commit 1141befCopy full SHA for 1141bef
.github/workflows/ci.yml
@@ -19,7 +19,7 @@ jobs:
19
env:
20
DIST_PATH: src/Uno.Wasm.Sample.RayTracer/bin/Release/net9.0/publish/wwwroot
21
22
- if: (github.event_name == 'pull_request' && github.event.action != 'closed')
+ if: (github.event_name == 'pull_request' && (github.event.action != 'closed' || github.event.action == 'schedule'))
23
runs-on: ubuntu-latest
24
container: 'unoplatform/wasm-build:3.0'
25
name: Build and Deploy Job
@@ -83,7 +83,7 @@ jobs:
83
path: artifacts-logs
84
85
- name: Publish to Azure Static WebApps
86
- if: ${{ github.ref != 'refs/heads/release/prod' }}
+ if: ${{ github.ref != 'refs/heads/release/prod' && github.event.action != 'schedule' }}
87
id: builddeploy_uno
88
uses: Azure/[email protected]
89
with:
0 commit comments