diff --git a/.github/workflows/pages.yaml b/.github/workflows/pages.yaml index 37143ef..187c8e2 100644 --- a/.github/workflows/pages.yaml +++ b/.github/workflows/pages.yaml @@ -4,6 +4,7 @@ on: push: branches: - main + - deploy-doom.hydra.family # TODO remove workflow_dispatch: @@ -28,12 +29,21 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Setup Pages uses: actions/configure-pages@v5 + + - name: Build + runs: | + yarn + yarn build + - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: - path: './holding-page' - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4 + path: "./dist" + + # TODO: enable + # - name: Deploy to GitHub Pages + # id: deployment + # uses: actions/deploy-pages@v4