mirror of
https://github.com/web3privacy/w3ps1.git
synced 2024-10-15 16:26:26 +02:00
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
name: GitHub Pages
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main # Set a branch name to trigger deployment
|
|
|
|
jobs:
|
|
build_and_deploy:
|
|
runs-on: ubuntu-22.04
|
|
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
|
|
|
|
- name: Generate static JSON file with data
|
|
run: npm run static-data
|
|
|
|
- name: Build
|
|
run: npm run build
|
|
|
|
- name: Add custom domain
|
|
run: 'touch build/CNAME && echo "prague.web3privacy.info" >> build/CNAME'
|
|
|
|
- name: Deploy
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
# If you're changing the branch from main,
|
|
# also change the `main` in `refs/heads/main`
|
|
# below accordingly.
|
|
if: ${{ github.ref == 'refs/heads/main' }}
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: ./build
|