Skip to content

Commit

Permalink
ci: fix uploading artifacts to release (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
loderunner authored Oct 12, 2023
1 parent b434241 commit 34bbdad
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 16 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,7 @@ jobs:
name: Uploading to GitHub Release
command: |
GITHUB_REPO_URL=$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME
cd ~/project/bin
for FILE in *; do
gh release upload --repo $GITHUB_REPO_URL $CIRCLE_TAG "$FILE"
done
Expand Down
30 changes: 14 additions & 16 deletions .circleci/release/release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
{
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false,
"include-v-in-tag": false,
"initial-version": "0.1.15",
"bootstrap-sha": "6bd5479468c1352fde43e3d22d917f36e46e9782",
"changelog-path": "CHANGELOG.md",
"include-component-in-tag": false,
"release-type": "node",
"packages": {
".": {
"release-type": "node"
}
},
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"include-v-in-tag": false,
"initial-version": "0.1.15",
"bootstrap-sha": "6bd5479468c1352fde43e3d22d917f36e46e9782",
"changelog-path": "CHANGELOG.md",
"include-component-in-tag": false,
"release-type": "node",
"packages": {
".": {
"release-type": "node"
}
},
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}

0 comments on commit 34bbdad

Please sign in to comment.