Skip to content

Commit 9870281

Browse files
committed
Pages deploy test
1 parent c4114b7 commit 9870281

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+
steps:
8+
- run: echo "Hello, world from run ${{github.run_number}}" >> index.html
9+
- uses: actions/upload-pages-artifact@v3
10+
with:
11+
path: .
12+
deploy:
13+
runs-on: ubuntu-latest
14+
needs: build
15+
permissions:
16+
pages: write
17+
id-token: write
18+
steps:
19+
- uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)