korhonen.cc/.github/workflows/deploy_site.yaml
Marko Korhonen aa157a304f
All checks were successful
Build and deploy site / Build and deploy site (push) Successful in 25s
[ci skip] Fix workflow job/step names
2024-02-24 23:01:18 +02:00

40 lines
1 KiB
YAML

name: Build and deploy site
on: [push]
env:
GOROOT: /usr/local/lib/go
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
name: Build site
runs-on: ubuntu-latest
container:
image: docker://git.korhonen.cc/functionalhacker/hugo-asciidoc-docker-ci:latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Fix git ownership
run: git config --global --add safe.directory /__w/korhonen.cc/korhonen.cc
- name: Install NPM packages
run: npm install
- name: Run Hugo
run: hugo --gc --minify -d /public
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: /public
deploy:
name: Deploy site to GitHub Pages
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy site to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4