From 321e55fccb88a23a2c98b04697a682bfe325a444 Mon Sep 17 00:00:00 2001 From: Romein van Buren Date: Sun, 8 Oct 2023 20:47:08 +0200 Subject: [PATCH] Add GitHub Pages deployment workflow --- .github/workflows/deploy.yml | 58 ++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..7689793 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,58 @@ +name: Deploy + +on: + push: + branches: [main] + workflow_dispatch: + +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 + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Node + uses: actions/setup-node@v3 + with: + node-version: "16" + + - name: Setup Pages + uses: actions/configure-pages@v3 + + - name: Install dependencies + run: npm ci + + - name: Build + run: npm run build + + - name: Upload build + uses: actions/upload-pages-artifact@v1 + with: + path: ./dist + + deploy: + runs-on: ubuntu-latest + needs: build + + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v2