diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index dc618ba..a5b72e2 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -1,4 +1,4 @@ -name: Deploy docs to Pages +name: Deploy to GitHub Pages on: push: @@ -11,15 +11,18 @@ permissions: id-token: write concurrency: - group: "pages" + group: "gh-pages" cancel-in-progress: false jobs: build: + name: "Build" runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Setup Node uses: actions/setup-node@v3 @@ -43,6 +46,7 @@ jobs: path: ./out deploy: + name: "Deploy" environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }}