Skip to content

Commit 37abcbe

Browse files
authored
Update GitHub Actions workflow for CV deployment
1 parent 200b1f9 commit 37abcbe

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/static.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Deploy CV
2+
on:
3+
push:
4+
branches: ["main"]
5+
jobs:
6+
deploy:
7+
runs-on: ubuntu-latest
8+
permissions:
9+
pages: write
10+
id-token: write
11+
environment:
12+
name: github-pages
13+
url: ${{ steps.deployment.outputs.page_url }}
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: actions/configure-pages@v4
17+
- uses: actions/upload-pages-artifact@v3
18+
with:
19+
path: '.'
20+
- uses: actions/deploy-pages@v4
21+
id: deployment

0 commit comments

Comments
 (0)