We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0796970 commit 1b45014Copy full SHA for 1b45014
1 file changed
.github/workflows/build.yml
@@ -2,7 +2,8 @@ name: Build and Deploy
2
3
on:
4
push:
5
- branches: [$default-branch]
+ branches:
6
+ - master
7
workflow_dispatch:
8
9
permissions:
@@ -19,13 +20,13 @@ jobs:
19
20
runs-on: ubuntu-latest
21
steps:
22
- name: Checkout
- uses: actions/checkout@v3
23
+ uses: actions/checkout@v4
24
- name: Install
25
run: npm ci
26
- name: Build
27
run: NODE_ENV=production gulp build
28
- name: Upload artifact
- uses: actions/upload-pages-artifact@v1
29
+ uses: actions/upload-pages-artifact@v3
30
with:
31
path: ./builds/production
32
@@ -38,4 +39,4 @@ jobs:
38
39
40
- name: Deploy to GitHub Pages
41
id: deployment
- uses: actions/deploy-pages@v2
42
+ uses: actions/deploy-pages@v4
0 commit comments