Skip to content

Commit 1e04c36

Browse files
committed
Check again
1 parent 02243c6 commit 1e04c36

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/fixtures-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ on:
99
builder-host:
1010
required: true
1111
type: string
12-
#secrets:
13-
# PRIVATE_GITHUB_DEPLOY_TOKEN:
14-
# required: true
12+
secrets:
13+
PRIVATE_GITHUB_DEPLOY_TOKEN:
14+
required: true
1515

1616
permissions:
1717
contents: read # to fetch code (actions/checkout)

.github/workflows/vercel-deploy-staging.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
# cancel in-progress runs on new commits to same PR (gitub.event.number)
77
concurrency:
8-
group: vercel-deploy-${{ github.workflow }}-${{ github.event.number || github.sha }}
8+
group: vercel-deploy-${{ github.workflow }}-${{ github.sha }}
99
cancel-in-progress: true
1010

1111
permissions:
@@ -90,14 +90,13 @@ jobs:
9090
environment:
9191
- empty
9292
- development
93-
9493
needs: deployment
9594
uses: ./.github/workflows/fixtures-test.yml
9695
with:
9796
builder-url: ${{ needs.deployment.outputs.builder-url }}
9897
builder-host: ${{ needs.deployment.outputs.builder-host }}
99-
# secrets:
100-
# PRIVATE_GITHUB_DEPLOY_TOKEN: ${{ secrets.PRIVATE_GITHUB_DEPLOY_TOKEN }}
98+
secrets:
99+
PRIVATE_GITHUB_DEPLOY_TOKEN: ${{ secrets.PRIVATE_GITHUB_DEPLOY_TOKEN }}
101100

102101
delete-github-deployments:
103102
needs: fixtures-test

0 commit comments

Comments
 (0)