diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 9773a73..8be1390 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -8,7 +8,7 @@ on: workflow_dispatch: permissions: - contents: write + contents: read pages: write id-token: write @@ -28,12 +28,17 @@ jobs: env: BASE_PATH: /my-app/ - - name: create .nojekyll - run: touch .output/public/.nojekyll - - - name: deploy pages - uses: JamesIves/github-pages-deploy-action@v4.5.0 + - name: deploy + uses: actions/upload-pages-artifact@v2 with: - branch: master - folder: .output/public + path: '.output/public' + + # - name: create .nojekyll + # run: touch .output/public/.nojekyll + # + # - name: deploy pages + # uses: JamesIves/github-pages-deploy-action@v4.5.0 + # with: + # branch: master + # folder: .output/public