pbw-explore/.github/workflows/gh-pages.yml

56 řádky
1.3 KiB
YAML

name: GitHub Pages
on:
push:
branches:
- main # Set a branch name to trigger deployment
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- uses: actions/setup-node@v3
with:
node-version: 19
- name: Install dependencies
run: npm ci
- run: rm src/lib/data.json && wget -O src/lib/data.json https://data.prgblockweek.com/23/index.json
- name: Build
run: npm run build
- name: Add custom domain
run: 'touch build/CNAME && echo "explore.prgblockweek.com" >> build/CNAME'
- uses: actions/configure-pages@v3
- uses: actions/upload-pages-artifact@v1
with:
path: 'build'
deploy:
needs: [build]
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1