Skip to content

Commit

Permalink
fix read artifact step
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeela Lifshitz authored and Yeela Lifshitz committed Aug 11, 2024
1 parent a1c26d5 commit d123760
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,11 @@ runs:
id: read-artifact
shell: bash
run: |
cat output/run_data_cache.json
RUN_DATA_CACHE=$(cat output/run_data_cache.json | jq -c)
cat $GITHUB_WORKSPACE/output/run_data_cache.json
RUN_DATA_CACHE=$(cat $GITHUB_WORKSPACE/output/run_data_cache.json | jq -c)
echo "RUN_DATA_CACHE=$RUN_DATA_CACHE" >> $GITHUB_ENV
- name: Run RulesEngine
shell: bash
run: node ${{ github.action_path }}/dist/index.js
Expand Down

0 comments on commit d123760

Please sign in to comment.