Skip to content

Commit 7ba32e9

Browse files
authored
Update main.yml
1 parent 30465f2 commit 7ba32e9

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
name: Build and Deploy
2+
23
on:
34
push:
45
branches: [devel]
5-
6+
67
permissions:
78
contents: write
9+
810
jobs:
911
build-and-deploy:
1012
runs-on: ubuntu-latest
@@ -15,12 +17,12 @@ jobs:
1517
steps:
1618
- name: Checkout 🛎️
1719
uses: actions/checkout@v3
18-
20+
1921
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v2
22+
uses: actions/setup-node@v4
2123
with:
2224
node-version: ${{ matrix.node-version }}
23-
cache: 'npm'
25+
# cache: 'npm' # ← Temporarily remove or comment this out to avoid 503
2426

2527
- name: Install and Build 🔧
2628
run: |
@@ -30,4 +32,4 @@ jobs:
3032
- name: Deploy 🚀
3133
uses: JamesIves/github-pages-deploy-action@v4
3234
with:
33-
folder: build # The folder the action should deploy.
35+
folder: build

0 commit comments

Comments
 (0)