We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3597b14 commit 11da5c6Copy full SHA for 11da5c6
.github/workflows/application-js-cloudflare-feature.yml
@@ -13,6 +13,10 @@ on:
13
required: true
14
DEPLOY_SECRETS:
15
16
+ ANOTHERTHING:
17
+ required: true
18
+ ANDANOTHER:
19
20
# CLOUDFLARE_ACCOUNT_ID:
21
# required: true
22
# CLOUDFLARE_ZONE_ID:
@@ -40,6 +44,9 @@ jobs:
40
44
steps:
41
45
- name: Debug Something
42
46
run: |
47
+ echo ANOTHERTHING: "${{secrets.ANOTHERTHING}}"
48
+ echo ANDANOTHER: "${{secrets.ANDANOTHER}}"
49
+
43
50
echo DEPLOY_SECRETS: "${{ secrets.DEPLOY_SECRETS }}"
51
while IFS='=' read -r key json_value; do
52
value="$(jq -Rs '.' <<< "$json_value")"
0 commit comments