Skip to content

Bump kachick/wait-other-jobs from 3.4.0 to 3.4.1 (#317) #442

Bump kachick/wait-other-jobs from 3.4.0 to 3.4.1 (#317)

Bump kachick/wait-other-jobs from 3.4.0 to 3.4.1 (#317) #442

name: generate_site_and_deploy
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Default to bash
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache hugo resources
uses: actions/cache@v4
with:
path: /home/runner/.cache/hugo_cache
key: ${{ runner.os }}-flake-${{ hashFiles('flake.lock') }}-hugomod-${{ hashFiles('go.sum') }}
restore-keys: |
${{ runner.os }}-flake-${{ hashFiles('flake.lock') }}-hugomod-
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- uses: DeterminateSystems/nix-installer-action@v14
- uses: DeterminateSystems/magic-nix-cache-action@v8
- name: Build hugo-nix to measure how longtime used to build
run: 'nix run .#hugo-nix -- version'
- name: Install Node.js dependencies
run: '[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && nix develop --command npm ci || true'
# Required go env before this step because hugo module depends on it. Now whole setup is completed with Nix
- name: Build with Hugo
env:
# For maximum backward compatibility with Hugo modules
HUGO_ENVIRONMENT: production
HUGO_ENV: production
run: |
nix run .#hugo-nix -- --panicOnWarning \
--gc \
--minify \
--baseURL "${{ steps.pages.outputs.base_url }}/"
- name: Upload artifact
if: github.event.sender.login == 'pankona'
uses: actions/upload-pages-artifact@v3
with:
path: ./public
deploy:
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: 'pages'
cancel-in-progress: false
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
if: github.event.sender.login == 'pankona' && github.event_name != 'pull_request'
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4