From 48fc4b5dce8cf0d69ff4f0f7e56917d7023fe66c Mon Sep 17 00:00:00 2001 From: Mathias Malmqvist Date: Wed, 17 Sep 2025 01:50:25 +0200 Subject: [PATCH] Create gulp-deploy.yml to deploy to GitHub Pages --- .github/workflows/gulp-deploy.yml | 76 +++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 .github/workflows/gulp-deploy.yml diff --git a/.github/workflows/gulp-deploy.yml b/.github/workflows/gulp-deploy.yml new file mode 100644 index 0000000..6fdee04 --- /dev/null +++ b/.github/workflows/gulp-deploy.yml @@ -0,0 +1,76 @@ +name: Build and Deploy to GitHub Pages + +on: + push: + branches: + - main + - build-dist-with-gulp + - release-2-16 + workflow_dispatch: + inputs: + deploy: + description: "Deploy to GitHub Pages?" + required: true + default: "true" + type: choice + options: + - "true" + - "false" + +# 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 + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [20.x] + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + cache: "npm" + + - name: Install dependencies + run: npm ci + + - name: Build project + run: npm run build:prod + + - name: Setup Pages + uses: actions/configure-pages@v4 + if: inputs.deploy == 'true' + + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + if: inputs.deploy == 'true' + with: + path: "./dist" + + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + if: inputs.deploy == 'true' + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4