From 650b7d43b682ad3d4bda1ff2e6f9c29004d5c389 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Mon, 16 Sep 2024 15:41:39 +0200 Subject: [PATCH] publish site --- .github/workflows/site.yml | 42 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/site.yml diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml new file mode 100644 index 0000000..083f650 --- /dev/null +++ b/.github/workflows/site.yml @@ -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