diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..192e7bee --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,57 @@ +name: Build and deploy Hugo site + +on: + push: + branches: + - gh-pages + paths: + - "site/**" + - ".github/workflows/deploy.yml" + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: "pages" + cancel-in-progress: true + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Hugo + uses: peaceiris/actions-hugo@v3 + with: + hugo-version: "0.139.0" + extended: true + + - name: Build site + run: hugo --source site --minify + + - name: Include chart artifacts + run: | + if [ -f index.yaml ]; then cp index.yaml docs/; fi + shopt -s nullglob + for pkg in *.tgz; do cp "$pkg" docs/; done + + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: docs + + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + needs: build + runs-on: ubuntu-latest + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..561f19a7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ + +/site/.DS_Store diff --git a/site/.DS_Store b/site/.DS_Store index 177c640e..27bdf079 100644 Binary files a/site/.DS_Store and b/site/.DS_Store differ