Unify github and forgejo workflows
All checks were successful
Build and deploy site / Build and deploy site (push) Successful in 1m1s

This commit is contained in:
Marko Korhonen 2024-02-24 22:48:10 +02:00
parent 9e3c7e08f5
commit 41349321ee
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890
2 changed files with 25 additions and 21 deletions

View file

@ -9,7 +9,7 @@ jobs:
container:
image: git.korhonen.cc/functionalhacker/hugo-asciidoc-docker-ci:latest
volumes:
- caddy_korhonen_cc:/korhonen.cc
- caddy_korhonen_cc:/public
steps:
- name: Checkout
uses: https://github.com/actions/checkout@v4

View file

@ -1,33 +1,37 @@
name: Hugo
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
volumes:
- './public:/public'
steps:
- name: Checkout
uses: actions/checkout@v4
- run: npm install
- run: hugo --gc --minify -d /public
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: './public'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v4
- 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 to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4