Skip to content

Commit

Permalink
Fix release asset uploads
Browse files Browse the repository at this point in the history
Fix no such file errors for binaries and chaincode packages

Signed-off-by: James Taylor <[email protected]>
  • Loading branch information
jt-nti committed Nov 11, 2022
1 parent f4bdc09 commit 7a5aa46
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
CHAINCODE_VERSION: ${{ github.ref_name }}

- name: Upload package
run: gh release upload $GITHUB_REF_NAME {CHAINCODE_LABEL}-${CHAINCODE_VERSION}.tgz
run: gh release upload $GITHUB_REF_NAME ${CHAINCODE_LABEL}-${CHAINCODE_VERSION}.tgz
if: startsWith(github.ref, 'refs/tags/v')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ jobs:
mv fabric-builder-k8s-${GOOS}-${GOARCH}.tgz fabric-builder-k8s-${GITHUB_REF_NAME}-${GOOS}-${GOARCH}.tgz
- name: Upload package
run: gh release upload $GITHUB_REF_NAME fabric-builder-k8s-${GITHUB_REF_NAME}-${GOOS}-${GOARCH}.tgz
run: |
export GOOS=$(go env GOOS)
gh release upload $GITHUB_REF_NAME fabric-builder-k8s-${GITHUB_REF_NAME}-${GOOS}-${GOARCH}.tgz
if: startsWith(github.ref, 'refs/tags/v')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 7a5aa46

Please sign in to comment.