From df5d9b11d5d78bf90ee8419f10ab82e3dd66f796 Mon Sep 17 00:00:00 2001 From: ScriptAutomate Date: Wed, 23 Oct 2024 11:53:18 -0500 Subject: [PATCH] Initial publishing of site from tarball --- .github/workflows/gh-pages.yml | 54 ++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .github/workflows/gh-pages.yml diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml new file mode 100644 index 0000000..47135de --- /dev/null +++ b/.github/workflows/gh-pages.yml @@ -0,0 +1,54 @@ +# Workflow for building and deploying a tarball of a static site to GitHub Pages +name: Deploy Tarball archive static site to Pages + +on: + push: + branches: + - '*' + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +# Default to bash +defaults: + run: + shell: bash + +jobs: + # Prep job + prep: + runs-on: ubuntu-latest + - name: Download and extract website tarball + run: | + # TODO curl -fsSL -o + tar xvf docs-idemproject-io.tar.gz + mv docs-idemproject-io public + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: ./public + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + # if: startsWith(github.ref, 'refs/tags/v') + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4