Skip to content

Commit 1ef522b

Browse files
committed
fix invalid use of secret/vars
1 parent 652df55 commit 1ef522b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/promote-staging-to-production.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,18 @@ on:
99
type: string
1010

1111
jobs:
12+
debug:
13+
uses: ./.github/workflows/debug-workflow.yml
14+
with:
15+
debug_enabled: false
16+
1217
promote-to-production:
1318
runs-on: ubuntu-latest
1419
if: github.event.inputs.confirm_promotion == 'promote'
1520

1621
env:
1722
APP_NAME: ${{ vars.PRODUCTION_APP_NAME }}
18-
CPLN_ORG: ${{ secrets.CPLN_ORG_PRODUCTION }}
23+
CPLN_ORG: ${{ vars.CPLN_ORG_PRODUCTION }}
1924
CPLN_TOKEN: ${{ secrets.CPLN_TOKEN_PRODUCTION }}
2025
UPSTREAM_TOKEN: ${{ secrets.CPLN_TOKEN_STAGING }}
2126

0 commit comments

Comments
 (0)