Skip to content

Commit

Permalink
publish site
Browse files Browse the repository at this point in the history
  • Loading branch information
nim65s committed Sep 16, 2024
1 parent 97d0533 commit 650b7d4
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/site.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Build and Deploy site

on:
push:
branches:
- gh-pages

permissions:
contents: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: install hugo
run: |
# current "ubuntu-latest" has 0.92.2, which is way too old
wget https://github.com/gohugoio/hugo/releases/download/v0.134.2/hugo_extended_0.134.2_linux-amd64.deb
sudo dpkg -i *.deb
rm *.deb
- name: Build
run: hugo
- uses: actions/upload-pages-artifact@v3
with:
path: public/

deploy:
name: publish on github pages
runs-on: ubuntu-latest
needs: build
permissions:
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@v4

0 comments on commit 650b7d4

Please sign in to comment.