Skip to content

Commit

Permalink
fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Amxx committed Jul 7, 2022
1 parent fb6c154 commit baf7d6b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
FORCE_COLOR: 1
GAS: true
GAS_REPORT: HEAD.gasreport.log~
REF_REPORT: ${{ github.ref_name }}.gasreport.log
REF_REPORT: ${{ github.base_ref }}.gasreport.log
OUT_REPORT: ${{ github.ref_name }}.gasreport.log
steps:
- uses: actions/checkout@v3
- name: Set up environment
Expand All @@ -53,13 +54,13 @@ jobs:
- name: 'Rename report for upload'
if: github.event_name != 'pull_request'
run: |
mv $GAS_REPORT $REF_REPORT
mv $GAS_REPORT $OUT_REPORT
- name: 'Save report'
if: github.event_name != 'pull_request'
uses: actions/upload-artifact@v3
with:
name: gasreport
path: ${{ env.REF_REPORT }}
path: ${{ env.OUT_REPORT }}

coverage:
if: github.repository != 'OpenZeppelin/openzeppelin-contracts-upgradeable'
Expand Down

0 comments on commit baf7d6b

Please sign in to comment.