Skip to content

Commit 8c3e487

Browse files
committed
output test
1 parent d683d56 commit 8c3e487

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/cicd.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,22 @@ on:
33
push:
44
branches:
55
- main
6+
- output-test
67
concurrency:
78
group: cicd
89
jobs:
910
test:
1011
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+
run: |
24+
echo "outputs=$outputs"

0 commit comments

Comments
 (0)