Skip to content

Commit

Permalink
fix: error if artifact not found. add * to load all files (#1185)
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardolyn committed Apr 29, 2021
1 parent 691a425 commit 18b61c2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,17 @@ jobs:
submodules: recursive
path: ${{ env.WORKING_DIR }}
- name: 'Build geth'
working-directory: ${{ env.WORKING_DIR }}
run: |
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: build/artifact/*
name: ${{ steps.env.outputs.key }}
if-no-files-found: error
deploy-cloudsmith:
name: 'Deploy binary to Cloudsmith for ${{ matrix.goarch }}'
needs:
Expand Down

0 comments on commit 18b61c2

Please sign in to comment.