Skip to content

Commit

Permalink
Update gatsby.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ind1go authored Jul 31, 2024
1 parent 0d49b6a commit d05eb1d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/gatsby.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Building and deploy Gatsby site to GitHub Pages
name: Deploy Gatsby site to Pages
name: Build and deploy Gatsby site

on: [ push, pull_request ]

Expand All @@ -9,12 +9,6 @@ permissions:
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

# Default to bash
defaults:
run:
Expand Down Expand Up @@ -77,6 +71,11 @@ jobs:

# Deployment job
deploy:
# Allow only one concurrent deployment.
# Cancel in-progress runs as we will just deploy the latest.
concurrency:
group: "pages"
cancel-in-progress: true
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand All @@ -87,3 +86,4 @@ jobs:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit d05eb1d

Please sign in to comment.