File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Deploy site to Pages
2+
3+ on :
4+ # Runs on pushes targeting the default branch
5+ push :
6+ branches : ["main"]
7+
8+ # Allows you to run this workflow manually from the Actions tab
9+ workflow_dispatch :
10+
11+ # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
12+ permissions :
13+ contents : read
14+ pages : write
15+ id-token : write
16+
17+ # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
18+ # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
19+ concurrency :
20+ group : " pages"
21+ cancel-in-progress : false
22+
23+ # Default to bash
24+ defaults :
25+ run :
26+ shell : bash
27+
28+ jobs :
29+ # Build job
30+ build :
31+ runs-on : ubuntu-latest
32+ env :
33+ NODE_ENV : production
34+ steps :
35+ - name : Checkout
36+ uses : actions/checkout@v3
37+ with :
38+ submodules : recursive
39+ - name : Setup Pages
40+ id : pages
41+ uses : actions/configure-pages@v3
42+ - name : Install Node.js dependencies
43+ run : " [[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
44+ - name : Build with Eleventy
45+ run : npm run build -- --pathprefix="${{ steps.pages.outputs.base_url }}/"
46+ - name : Upload artifact
47+ uses : actions/upload-pages-artifact@v1
48+ with :
49+ path : ./_site
50+
51+ # Deployment job
52+ deploy :
53+ environment :
54+ name : github-pages
55+ url : ${{ steps.deployment.outputs.page_url }}
56+ runs-on : ubuntu-latest
57+ needs : build
58+ steps :
59+ - name : Deploy to GitHub Pages
60+ id : deployment
61+ uses : actions/deploy-pages@v2
You can’t perform that action at this time.
0 commit comments