Skip to content

Commit 450d672

Browse files
add the build step
1 parent 3970c73 commit 450d672

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,17 @@ on:
77

88
permissions:
99
contents: write
10-
pages: write
11-
id-token: write
12-
1310
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
17+
- name: Upload artifact
18+
uses: actions/upload-pages-artifact@v2
19+
with:
20+
path: ./public # This is your static site folder
1421
deploy:
1522
runs-on: ubuntu-latest
1623
steps:

0 commit comments

Comments
 (0)