Skip to content

Commit

Permalink
test output
Browse files Browse the repository at this point in the history
  • Loading branch information
mcascone committed Aug 13, 2024
1 parent 439ca2e commit 52fb49b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/envtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
windows_job:
name: Windows Job
runs-on: ubuntu-latest
outputs:
artifactId: ${{ steps.config.outputs.artifactId }}
steps:
- name: uses wf env
run: echo 'Hi ${{ env.mascot }}' # Hi Mona
Expand All @@ -42,6 +44,9 @@ jobs:
echo 'art: ${{ steps.config.outputs.artifactId }}'
echo 'test: ${{ steps.config.outputs.test }}'
echo "env: $ARTIFACT_ID"
- name: set outputs
run: echo "ARTIFACT_ID=${{ steps.config.outputs.artifactId }} >> $GITHUB_OUTPUT"

linux_job:
name: Linux Job
Expand All @@ -56,6 +61,7 @@ jobs:
run: |
echo "scope id: $ARTIFACT_ID"
echo 'context id: ${{ env.ARTIFACT_ID }}'
echo 'output id: ${{ needs.windows_job.outputs.artifactId}}'
# - name: set gritty env var
# run: echo "mascot=Gritty" >> $GITHUB_ENV
Expand Down

0 comments on commit 52fb49b

Please sign in to comment.