Skip to content

Commit

Permalink
Update testhera.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
TerrenceMcGuinness-NOAA committed Jun 1, 2023
1 parent 2e812c9 commit f5eb1fd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/testhera.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,12 @@ jobs:
id: myid
env:
MYTEST: foobar
MYLABELS: fuckfuck
run: |
echo "mytest $MYTEST"
echo "mytest: $MYTEST"
echo "mylabels: $MYLABELS"
echo "mytest=$MYTEST" >> $GITHUB_OUTPUT
echo "mylabels=$MYLABELS" >> $GITHUB_OUTPUT
test:
runs-on: ubuntu-latest
Expand All @@ -31,5 +34,7 @@ jobs:
- name: Test
run: |
echo "testme: $testme"
echo "labelme: $labelme"
env:
testme: ${{ needs.getlabels.outputs.mytest }}
labelme: ${{ needs.getlabels.outputs.mylables }}

0 comments on commit f5eb1fd

Please sign in to comment.