We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bce0d0 commit ddf4782Copy full SHA for ddf4782
.github/workflows/application-js-cloudflare-feature.yml
@@ -9,6 +9,8 @@ on:
9
DEPLOY_SECRETS:
10
type: string
11
required: true
12
+ SOMETHING_ELSE:
13
+ type: string
14
secrets:
15
GH_TOKEN:
16
@@ -97,7 +99,8 @@ jobs:
97
99
path: ./public
98
100
- name: Debug Something
101
run: |
- echo "${{ inputs.DEPLOY_SECRETS }}"
102
+ echo SOMETHING_ELSE: "${{ inputs.SOMETHING_ELSE }}"
103
+ echo DEPLOY_SECRETS: "${{ inputs.DEPLOY_SECRETS }}"
104
- name: Setup Deploy Secrets
105
106
echo "${{ inputs.DEPLOY_SECRETS }}" | jq -r 'to_entries | .[] | "\(.key)=\(.value)"' >> $GITHUB_ENV
0 commit comments