chore: add missing footer links #7
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: Build | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'source/**' | |
- 'config/**' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Setup Node.js env | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 'latest' | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
run_install: false | |
# Get Hexo test utils | |
- uses: actions/checkout@v4 | |
with: | |
repository: 'kratos-rebirth/quickstart' | |
# Clone Demo site configurations & assets into tmp | |
- uses: actions/checkout@v4 | |
with: | |
path: 'custom-files' | |
# Apply custom settings | |
- name: Apply custom settings | |
run: | | |
rm _config.yml | |
rm _config.kratos-rebirth.yml | |
mv custom-files/config/_config.yml _config.yml | |
mv custom-files/config/_config.kratos-rebirth.yml _config.kratos-rebirth.yml | |
# Apply custom files | |
- name: Apply custom files | |
run: | | |
mv source/assets custom-files/source/ | |
rm -rf source | |
mv custom-files/source source | |
# Inject environment variables | |
- name: Inject environment variables | |
run: | | |
sed -i "s|clientID: 'GitHub Application Client ID'|clientID: '${{ secrets.GITALK_CLIENT_ID }}'|" "source/comments/gitalk.js" | |
sed -i "s|clientSecret: 'GitHub Application Client Secret'|clientSecret: '${{ secrets.GITALK_CLIENT_SECRET }}'|" "source/comments/gitalk.js" | |
# Install Hexo env | |
- name: Install Hexo environment | |
run: pnpm install | |
# Hexo build demo site | |
- name: Hexo build demo site | |
run: npx hexo generate --force | |
- name: Upload artifacts for pages | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: public | |
deploy: | |
needs: build | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |