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 d683d56 commit 8c3e487Copy full SHA for 8c3e487
.github/workflows/cicd.yml
@@ -3,8 +3,22 @@ on:
3
push:
4
branches:
5
- main
6
+ - output-test
7
concurrency:
8
group: cicd
9
jobs:
10
test:
11
uses: ./.github/workflows/test.yml
12
+ output-test:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - id: set-outputs
16
+ run: |
17
+ echo "case=case" >> "$GITHUB_OUTPUT"
18
+ echo "CASE=CASE" >> "$GITHUB_OUTPUT"
19
+ echo "cAsE=cAsE" >> "$GITHUB_OUTPUT"
20
+ echo "what can i put in here? 🤔=some space" >> "$GITHUB_OUTPUT"
21
+ - env:
22
+ outputs: ${{ toJSON(steps.set-outputs.outputs) }}
23
24
+ echo "outputs=$outputs"
0 commit comments