Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
fix: make sure files exported are owned by current user
Browse files Browse the repository at this point in the history
  • Loading branch information
pengx17 committed Mar 8, 2022
1 parent 65edd4e commit ba73f51
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ runs:
run: |
xvfb-run node publish.mjs -p graph/${{ inputs.src }} -t ${{ inputs.trace }} -o graph/${{ inputs.dest }}
exit $?
- name: change exported files owner
shell: bash
run: |
sudo chown -R $USER: ${{ github.workspace }}/${{ inputs.dest }}
- name: Archive trace file
if: ${{ always() && inputs.trace }}
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit ba73f51

Please sign in to comment.