Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit 918f327

Browse files
authored
Update Pages Deploy workflow (actions#76)
1 parent 442ac87 commit 918f327

File tree

1 file changed

+41
-14
lines changed

1 file changed

+41
-14
lines changed

.github/workflows/deploy.yml

Lines changed: 41 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,50 @@
11
name: Deploy 🚀
22

33
on:
4+
# Runs on pushes targeting the default branch
45
push:
5-
branches: ["main", "deploy-test"]
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
622

723
jobs:
8-
deploy:
24+
# Build job
25+
build:
926
runs-on: ubuntu-latest
1027
steps:
11-
- uses: actions/checkout@v2
12-
- run: mkdir gh-pages
13-
- run: cp favicon.ico gh-pages
14-
- uses: ./
15-
with:
16-
format: html
17-
output: ./gh-pages/index.html
18-
- run: "find ./gh-pages"
19-
# https://github.com/peaceiris/actions-gh-pages/releases/tag/v3.8.0
20-
- uses: peaceiris/actions-gh-pages@068dc23d9710f1ba62e86896f84735d869951305
28+
- name: Checkout
29+
uses: actions/checkout@v4
30+
- name: Setup Pages
31+
uses: actions/configure-pages@v5
32+
- name: Build with Jekyll
33+
uses: actions/jekyll-build-pages@v1
2134
with:
22-
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
23-
publish_dir: gh-pages
35+
source: ./
36+
destination: ./_site
37+
- name: Upload artifact
38+
uses: actions/upload-pages-artifact@v3
39+
40+
# Deployment job
41+
deploy:
42+
environment:
43+
name: github-pages
44+
url: ${{ steps.deployment.outputs.page_url }}
45+
runs-on: ubuntu-latest
46+
needs: build
47+
steps:
48+
- name: Deploy to GitHub Pages
49+
id: deployment
50+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)