We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef9c7ea commit 0ec5279Copy full SHA for 0ec5279
.circleci/config.yml
@@ -60,10 +60,13 @@ jobs:
60
- image: hexpm/elixir:1.18.2-erlang-27.2.1-alpine-3.21.2
61
steps:
62
- checkout
63
+ - run:
64
+ name: Install packages
65
+ command: |
66
+ apk add --no-cache build-base linux-headers git github-cli
67
- run:
68
name: Publish GitHub release
69
command: |
- apk add --no-cache github-cli
70
sed -n "/^## $CIRCLE_TAG/,/^## /p" CHANGELOG.md | sed '1d; /^## /d' > RELEASE_NOTES
71
gh release create $CIRCLE_TAG --notes "$(cat RELEASE_NOTES)"
72
0 commit comments