Skip to content

Commit 3e6d5ce

Browse files
Create deploy.yml
1 parent acf20a8 commit 3e6d5ce

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Deploy GitHub Pages
2+
3+
on:
4+
workflow_run:
5+
workflows: ["My First GitHub Actions"]
6+
types:
7+
- completed
8+
9+
permissions:
10+
contents: read
11+
pages: write
12+
id-token: write
13+
14+
jobs:
15+
deploy:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Deploy to GitHub Pages
19+
uses: actions/deploy-pages@v2

0 commit comments

Comments
 (0)