diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml new file mode 100644 index 0000000..5253d45 --- /dev/null +++ b/.github/workflows/site.yml @@ -0,0 +1,38 @@ +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: apt update && apt install -qy hugo + - 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