Skip to content

Commit 5070804

Browse files
authored
readme
1 parent d88a687 commit 5070804

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/static.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Simple workflow for deploying static content to GitHub Pages
2+
name: Deploy static content to Pages
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
jobs:
19+
deploy:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v4
23+
- uses: actions/configure-pages@v3
24+
- uses: actions/upload-pages-artifact@v2
25+
with:
26+
path: "." # index.html is in root
27+
- uses: actions/deploy-pages@v2

0 commit comments

Comments
 (0)