Skip to content

Commit

Permalink
fix env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarbuzzi committed Sep 28, 2024
1 parent 1a990cc commit 558d3ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions actions/testmo-create-resources/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ inputs:
required: false

runs:
env:
RESOURCES_FILE: ${{ inputs.resources_file }}
RESOURCES_JSON: ${{ inputs.resources_json }}
using: composite
steps:
- run: 'echo "starting PATH: $PATH"'
Expand All @@ -41,8 +38,11 @@ runs:
compose_testmo_resources_file.py \
--resources_json '${{ inputs.resources_json }}' \
--destination "${{ inputs.resources_file }}"
--destination "$RESOURCES_FILE"
echo "cwd: $(pwd) -- contents:"
ls -A
shell: bash
env:
RESOURCES_FILE: ${{ inputs.resources_file }}
RESOURCES_JSON: ${{ inputs.resources_json }}

0 comments on commit 558d3ce

Please sign in to comment.