diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 269a3c2..376b9dc 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -1,35 +1,54 @@ -name: 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: - - main + branches: ['main'] + + # 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: true + jobs: + # Single deploy job since we're just deploying deploy: defaults: run: working-directory: ui + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest - permissions: - contents: write - concurrency: - group: ${{ github.workflow }}-${{ github.ref }} steps: - - uses: actions/checkout@v3 - - - uses: pnpm/action-setup@v2 + - name: Checkout + uses: actions/checkout@v3 + - name: Set up Node + uses: actions/setup-node@v3 with: - version: 8 - - - name: Install - run: pnpm install - + node-version: 18 + cache: 'npm' + - name: Install dependencies + run: npm install - name: Build - run: pnpm run build - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - if: github.ref == 'refs/heads/main' + run: npm run build + - name: Setup Pages + uses: actions/configure-pages@v3 + - name: Upload artifact + uses: actions/upload-pages-artifact@v1 with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./ui/dist + # Upload dist repository + path: './ui/dist' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v1