Skip to content

Commit 9725264

Browse files
authored
Fix missing working dir path for upload artifact (#1187)
* fix: missing path for upload artifact * tidy up
1 parent a19e56c commit 9725264

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,10 @@ jobs:
5757
make geth
5858
mkdir -p build/artifact
5959
tar cfvz build/artifact/geth_${{ steps.env.outputs.version }}_${{ steps.env.outputs.key }}.tar.gz -C build/bin geth
60-
ls build/artifact
6160
- name: 'Upload artifact'
6261
uses: actions/upload-artifact@v2
6362
with:
64-
path: build/artifact/*
63+
path: ${{ env.WORKING_DIR }}/build/artifact
6564
name: ${{ steps.env.outputs.key }}
6665
if-no-files-found: error
6766
deploy-cloudsmith:

0 commit comments

Comments
 (0)