Skip to content

Commit

Permalink
chore: set result in file
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed Apr 3, 2024
1 parent c7a7948 commit e17bffc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ runs:
steps:
- run: |
yarn --cwd ${{ github.action_path }} --production=true
yarn --cwd ${{ github.action_path }} start --issue "${{ inputs.issue_url }}" --file results.json
touch results.json
ls
yarn --cwd ${{ github.action_path }} start --issue "${{ inputs.issue_url }}" --file "./results.json"
ls
output=$(cat results.json)
echo "Output of calculations:"
echo "$output"
Expand Down

0 comments on commit e17bffc

Please sign in to comment.