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.
1 parent 6de0ffa commit 0ce52a5Copy full SHA for 0ce52a5
.github/workflows/deploy.yml
@@ -2,9 +2,9 @@ name: Build and Deploy
2
3
on:
4
push:
5
- branches: ["develop"]
+ branches: ["main"]
6
pull_request:
7
8
workflow_dispatch: # Allows manual triggering from GitHub UI
9
10
permissions:
@@ -42,7 +42,7 @@ jobs:
42
path: './dist'
43
44
deploy:
45
- if: github.event_name == 'push' && github.ref == 'refs/heads/develop' || github.event_name == 'workflow_dispatch'
+ if: github.event_name == 'push' && github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch'
46
47
environment:
48
name: github-pages
0 commit comments