Sun Sep 3 13:03:33 CST 2023 #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Jekyll with GitHub Pages dependencies preinstalled | |
on: | |
push: | |
branches: ["main"] | |
workflow_dispatch: | |
repository_dispatch: | |
env: | |
PAGE_URL: https:\/\/siansiansu.github.io\/${{ github.event.repository.name }} | |
DESCRIPTION: 這 ê 清單整理誠濟學習台語 ê 資源,你若有建議 ê 教材,歡迎使用 Pull Request 來補充不足 ê 部分,抑是佇下跤留言共我講,多謝! | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Clone | |
uses: actions/checkout@v3 | |
with: | |
repository: siansiansu/jekyll-theme | |
path: jekyll-theme | |
- name: Run | |
run: | | |
cp -r jekyll-theme/* . | |
sed -i "4s/.*/description: ${DESCRIPTION}/" _config.yml | |
sed -i "5s/.*/pageurl: ${PAGE_URL}/" _config.yml | |
sed -i '1 i---\nlayout: home\n---\n' README.md | |
cp README.md index.md | |
- name: Setup Pages | |
uses: actions/configure-pages@v3 | |
- name: Build with Jekyll | |
uses: actions/jekyll-build-pages@v1 | |
with: | |
source: ./ | |
destination: ./_site | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v1 | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |