Skip to content

Commit b2567c2

Browse files
committed
Pages deploy test
1 parent c4114b7 commit b2567c2

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Deploy pages test
2+
on:
3+
push
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
permissions:
8+
pages: write
9+
id-token: write
10+
steps:
11+
- run: echo "Hello, world from run ${{github.run_number}}" >> index.html
12+
- uses: actions/upload-pages-artifact@v3
13+
with:
14+
path: .
15+
deploy:
16+
runs-on: ubuntu-latest
17+
needs: build
18+
steps:
19+
- uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)