diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml deleted file mode 100644 index 2280cc3..0000000 --- a/.github/workflows/deploy-pages.yml +++ /dev/null @@ -1,39 +0,0 @@ -# https://vitejs.dev/guide/static-deploy.html#github-pages -name: Deploy static content to Pages - -on: - push: - branches: ['main'] - -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: 'pages' - cancel-in-progress: true - -jobs: - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 'lts/*' - cache: 'npm' - cache-dependency-path: './frontend/package-lock.json' - - working-directory: ./frontend - run: npm install - - working-directory: ./frontend - run: npm run build - - uses: actions/configure-pages@v3 - - uses: actions/upload-pages-artifact@v1 - with: - path: './frontend/dist/spa' - - id: deployment - uses: actions/deploy-pages@v1