From 2e812c96968b0b6d51809c680f13c3f17550c6c7 Mon Sep 17 00:00:00 2001 From: TerrenceMcGuinness-NOAA Date: Wed, 31 May 2023 23:49:01 +0000 Subject: [PATCH] Update testhera.yaml --- .github/workflows/testhera.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/testhera.yaml b/.github/workflows/testhera.yaml index 370730308c..aca262b55f 100644 --- a/.github/workflows/testhera.yaml +++ b/.github/workflows/testhera.yaml @@ -11,16 +11,16 @@ jobs: getlabels: runs-on: ubuntu-latest outputs: - labels: ${{ steps.myid.outputs.labels }} - test: ${{ steps.myid.outputs.tests }} + mylabels: ${{ steps.myid.outputs.mylabels }} + mytest: ${{ steps.myid.outputs.mytests }} steps: - name: Get Lables Steps id: myid env: - FOO: foobar + MYTEST: foobar run: | - echo "test=$FOO" - echo "test=$FOO" >> $GITHUB_OUTPUT + echo "mytest $MYTEST" + echo "mytest=$MYTEST" >> $GITHUB_OUTPUT test: runs-on: ubuntu-latest @@ -32,4 +32,4 @@ jobs: run: | echo "testme: $testme" env: - testme: ${{ needs.getlabels.outputs.test }} + testme: ${{ needs.getlabels.outputs.mytest }}