Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
sagiegurari committed Jan 11, 2022
1 parent 309e9db commit c72fe6b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .buildnumber
Original file line number Diff line number Diff line change
@@ -1 +1 @@
228
229
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

* Enhancement: New plugin system to enable custom task execution logic #620
* Maintenance: upgrade to clap 3
* Enhancement: Support new github auth token for github release task

### v0.35.7 (2021-12-11)

Expand Down
2 changes: 1 addition & 1 deletion src/lib/descriptor/makefiles/github.toml
Original file line number Diff line number Diff line change
Expand Up @@ -96,5 +96,5 @@ condition = { platforms = [
] }
script = '''
API_JSON=$(printf '{"tag_name": "%s","target_commitish": "master","name": "%s v%s","body": "release","draft": false,"prerelease": false}' ${CARGO_MAKE_PROJECT_VERSION} ${CARGO_MAKE_PROJECT_NAME} ${CARGO_MAKE_PROJECT_VERSION})
curl --data "$API_JSON" https://api.github.com/repos/${GITHUB_REPO_NAME}/releases?access_token=${GITHUB_API_TOKEN}
curl --data "$API_JSON" -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/${GITHUB_REPO_NAME}/releases
'''

0 comments on commit c72fe6b

Please sign in to comment.