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 15bd031 commit 5e6edd2Copy full SHA for 5e6edd2
.github/workflows/bake.yml
@@ -143,6 +143,18 @@ jobs:
143
id-token: write # needed for signing the images with GitHub OIDC Token
144
packages: write # needed to push images to GitHub Container Registry
145
steps:
146
+ -
147
+ name: Environment variables
148
+ uses: actions/github-script@v8
149
+ env:
150
+ INPUT_ENVS: ${{ inputs.envs }}
151
+ with:
152
+ script: |
153
+ for (const env of core.getMultilineInput('envs')) {
154
+ core.info(env);
155
+ const [key, value] = env.split('=', 2);
156
+ core.exportVariable(key, value);
157
+ }
158
-
159
name: Install @docker/actions-toolkit
160
uses: actions/github-script@v8
0 commit comments