diff --git a/.github/workflows/build-and-deploy-to-gh-pages.yml b/.github/workflows/build-and-deploy-to-gh-pages.yml index 822d2f3..d223322 100644 --- a/.github/workflows/build-and-deploy-to-gh-pages.yml +++ b/.github/workflows/build-and-deploy-to-gh-pages.yml @@ -1,60 +1,51 @@ -name: Deploy to GitHub Pages +# Simple workflow for deploying static content to GitHub Pages +name: Deploy static content to Pages + on: + # Runs on pushes targeting the default branch push: - branches: - - master + branches: ['master'] + + # Allows you to run this workflow manually from the Actions tab workflow_dispatch: + +# Sets the GITHUB_TOKEN permissions to allow deployment to GitHub Pages permissions: contents: read pages: write id-token: write + +# Allow one concurrent deployment concurrency: - group: "pages" - cancel-in-progress: false + group: 'pages' + cancel-in-progress: true + jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout Repository - uses: actions/checkout@v4 - - name: Detect package manager - id: detect-package-manager - run: | - if [ -f "${{ github.workspace }}/yarn.lock" ]; then - echo "manager=yarn" >> $GITHUB_OUTPUT - echo "command=install" >> $GITHUB_OUTPUT - echo "runner=yarn" >> $GITHUB_OUTPUT - exit 0 - elif [ -f "${{ github.workspace }}/package.json" ]; then - echo "manager=npm" >> $GITHUB_OUTPUT - echo "command=ci" >> $GITHUB_OUTPUT - echo "runner=npx --no-install" >> $GITHUB_OUTPUT - exit 0 - else - echo "Unable to determine package manager" - exit 1 - fi - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: "14" - cache: ${{ steps.detect-package-manager.outputs.manager }} - - name: Install dependencies - run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }} - - name: Build project - run: ${{ steps.detect-package-manager.outputs.runner }} npm run build - - name: Upload artifact - uses: actions/upload-pages-artifact@v2 - with: - path: ./build - # Deployment job + # Single deploy job since we're just deploying deploy: environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest - needs: build steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Set up Node + uses: actions/setup-node@v3 + with: + node-version: 18 + cache: 'npm' + - name: Install dependencies + run: npm install + - name: Build + run: npm run build + - name: Setup Pages + uses: actions/configure-pages@v3 + - name: Upload artifact + uses: actions/upload-pages-artifact@v1 + with: + # Upload dist repository + path: './dist' - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v3 + uses: actions/deploy-pages@v1