From 1375af0ba0ffef587d812c405e5d2137eb58e8a9 Mon Sep 17 00:00:00 2001 From: JannisX11 Date: Thu, 2 Nov 2023 22:51:58 +0100 Subject: [PATCH] Update github pages build workflow --- .github/workflows/webapp.yml | 39 ++++++++++++++++++++++++++++-------- 1 file changed, 31 insertions(+), 8 deletions(-) diff --git a/.github/workflows/webapp.yml b/.github/workflows/webapp.yml index 5de9e2b6..a4a12448 100644 --- a/.github/workflows/webapp.yml +++ b/.github/workflows/webapp.yml @@ -1,28 +1,51 @@ -name: NodeJS with Webpack +name: Deploy Web App with build step on: push: branches: [ "gh-pages" ] - pull_request: - branches: [ "gh-pages" ] + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: "pages" + cancel-in-progress: false jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [14.x, 16.x, 18.x] - steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: 18.x - name: Build run: | npm install npm run prepublish + deploy: + needs: build + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Pages + uses: actions/configure-pages@v3 + - name: Upload artifact + uses: actions/upload-pages-artifact@v2 + with: + # Upload entire repository + path: '.' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v2