Skip to content

Commit

Permalink
Fix Test
Browse files Browse the repository at this point in the history
  • Loading branch information
smashedr committed Aug 7, 2024
1 parent f6f104a commit c72ea0b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ jobs:
uses: actions/checkout@v4

- name: "Test to JSON"
id: test
id: json
uses: ./
with:
source: .github/test/test.env
dest: .github/test/results.json

- name: "Echo JSON"
run: |
echo '${{ steps.test.outputs.result }}'
echo '${{ steps.json.outputs.result }}'
cat .github/test/results.json
- name: "Test to Environment"
id: test
id: env
uses: ./
with:
source: .github/test/test.json
Expand All @@ -36,7 +36,7 @@ jobs:

- name: "Echo Environment"
run: |
echo '${{ steps.test.outputs.result }}'
echo '${{ steps.env.outputs.result }}'
cat .github/test/results.env
lint:
Expand Down

0 comments on commit c72ea0b

Please sign in to comment.