Skip to content

Commit

Permalink
Fix missing working dir path for upload artifact (#1187)
Browse files Browse the repository at this point in the history
* fix: missing path for upload artifact

* tidy up
  • Loading branch information
ricardolyn committed Apr 29, 2021
1 parent a19e56c commit 9725264
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,10 @@ jobs:
make geth
mkdir -p build/artifact
tar cfvz build/artifact/geth_${{ steps.env.outputs.version }}_${{ steps.env.outputs.key }}.tar.gz -C build/bin geth
ls build/artifact
- name: 'Upload artifact'
uses: actions/upload-artifact@v2
with:
path: build/artifact/*
path: ${{ env.WORKING_DIR }}/build/artifact
name: ${{ steps.env.outputs.key }}
if-no-files-found: error
deploy-cloudsmith:
Expand Down

0 comments on commit 9725264

Please sign in to comment.