Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
thatrandomperson5 authored Dec 12, 2022
1 parent 91a9781 commit 40d16f5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,15 @@ runs:
shell: bash
if: ${{ inputs.skip-first == 'false' }}
# -e
- run: echo "EXCLUDE=$(python -m Pywrap $CODE)" >>${GITHUB_ENV}
shell: bash
env:
CODE:
output = '${{ inputs.exclude }}'.splitlines()
- run: echo "ARGS=$ARGS -e $ITEM" >>${GITHUB_ENV}
shell: bash
env:
ITEM: ${{ join(inputs.exclude, ' -e ') }}
ITEM: ${{ join(EXCLUDE, ' -e ') }}



Expand Down

0 comments on commit 40d16f5

Please sign in to comment.