diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1efef78..d4b1a79 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -9,9 +9,18 @@ permissions: 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: - name: Checkout uses: actions/checkout@v4 @@ -25,4 +34,5 @@ jobs: path: '.' - name: Deploy + id: deployment uses: actions/deploy-pages@v4 \ No newline at end of file