Skip to content

Commit

Permalink
move variables to env block (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
jetersen authored Jun 14, 2022
1 parent 6dd04d9 commit 3f2bc8a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ outputs:
description: success if the check succeeded otherwise a message describing the result
runs:
using: composite
steps:
- run: GITHUB_TOKEN=${{ inputs.GITHUB_TOKEN }} OUTPUT_RESULT=${{ inputs.output_result }} NAME=${{ inputs.name }} $GITHUB_ACTION_PATH/run.sh
steps:
- run: $GITHUB_ACTION_PATH/run.sh
id: verify-ci-status
shell: bash
env:
GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }}
NAME: ${{ inputs.name }}
OUTPUT_RESULT: ${{ inputs.output_result }}

0 comments on commit 3f2bc8a

Please sign in to comment.