Skip to content

Commit

Permalink
chore(release): Add debug logs to weekly release build (#1794)
Browse files Browse the repository at this point in the history
  • Loading branch information
luispollo authored Feb 9, 2021
1 parent 7994aba commit 09da81d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/periodic_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
BINTRAY_API_KEY: ${{ secrets.BINTRAY_API_KEY }}
RELEASE_VERSION: ${{ steps.changelog.outputs.version }}
run: |
echo "Building keel release ${RELEASE_VERSION}"
./gradlew --info -Pversion="${RELEASE_VERSION}" -PbintrayUser="${BINTRAY_USER}" -PbintrayKey="${BINTRAY_API_KEY}" -PbintrayPublishDebEnabled=false publish
- name: Create release
Expand All @@ -50,7 +51,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.changelog.outputs.tag }}
release_name: ${{ steps.changelog.outputs.tag }}
release_name: ${{ github.event.repository.name }} ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.clean_changelog }}
draft: false
prerelease: true

0 comments on commit 09da81d

Please sign in to comment.