We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7994aba commit 09da81dCopy full SHA for 09da81d
.github/workflows/periodic_release.yml
@@ -41,6 +41,7 @@ jobs:
41
BINTRAY_API_KEY: ${{ secrets.BINTRAY_API_KEY }}
42
RELEASE_VERSION: ${{ steps.changelog.outputs.version }}
43
run: |
44
+ echo "Building keel release ${RELEASE_VERSION}"
45
./gradlew --info -Pversion="${RELEASE_VERSION}" -PbintrayUser="${BINTRAY_USER}" -PbintrayKey="${BINTRAY_API_KEY}" -PbintrayPublishDebEnabled=false publish
46
47
- name: Create release
@@ -50,7 +51,7 @@ jobs:
50
51
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
52
with:
53
tag_name: ${{ steps.changelog.outputs.tag }}
- release_name: ${{ steps.changelog.outputs.tag }}
54
+ release_name: ${{ github.event.repository.name }} ${{ steps.changelog.outputs.tag }}
55
body: ${{ steps.changelog.outputs.clean_changelog }}
56
draft: false
57
prerelease: true
0 commit comments