Skip to content

Commit

Permalink
Fix release flow (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtlynch authored Nov 10, 2024
1 parent 500adfe commit cbc7422
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,6 @@ jobs:
- ./dist
publish_release:
executor: base
environment:
GITHUB_TOKEN: "${GITHUB_TOKEN}"
steps:
- attach_workspace:
at: ./
Expand All @@ -185,13 +183,10 @@ jobs:
sudo apt update
sudo apt install gh
- run:
name: Create and upload release
name: Upload binaries to Github release
command: |
gh release create "${CIRCLE_TAG}" ./dist/* \
--repo "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" \
--title "${CIRCLE_TAG}" \
--notes "Release ${CIRCLE_TAG}" \
--verify-tag
gh release upload "${CIRCLE_TAG}" ./dist/* \
--repo "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}"
publish_docker_images:
executor: base
environment:
Expand Down

0 comments on commit cbc7422

Please sign in to comment.