Skip to content

Commit

Permalink
fix: ensure correct page history (#2909)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Plischke authored Aug 27, 2024
1 parent 2b9b0c6 commit bd45c13
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/deploy-to-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ env:
ALGOLIA_APP_ID: ${{secrets.ALGOLIA_APP_ID}}
ALGOLIA_KEY: ${{secrets.ALGOLIA_KEY}}

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}

jobs:
deploy-staging:
runs-on: ubuntu-latest
Expand All @@ -24,6 +27,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # For correct author and date information on pages.

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down Expand Up @@ -70,6 +75,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # For correct author and date information on pages.

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down

0 comments on commit bd45c13

Please sign in to comment.