-
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: use same action for release commit as for version tagging
- Loading branch information
1 parent
b0dce24
commit 9322b1d
Showing
1 changed file
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,20 +86,21 @@ jobs: | |
ORG_GRADLE_PROJECT_sonatypePassword: ${{secrets.ORG_GRADLE_PROJECT_SONATYPEPASSWORD}} | ||
run: ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository | ||
|
||
- uses: stefanzweifel/git-auto-commit-action@v4 | ||
- uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
branch: master | ||
commit_user_name: skrapeit | ||
commit_user_email: [email protected] | ||
commit_author: skrapeit <[email protected]> | ||
commit_message: bump version ${{ steps.current_version.outputs.value }} --> ${{ github.event.inputs.version }} | ||
tagging_message: ${{ github.event.inputs.version }} | ||
|
||
- name: Create Tag | ||
uses: negz/create-tag@v1 | ||
with: | ||
version: ${{ github.event.inputs.version }} | ||
message: ${{ github.event.inputs.version.description }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
# - name: Create Tag | ||
# uses: negz/create-tag@v1 | ||
# with: | ||
# version: ${{ github.event.inputs.version }} | ||
# message: ${{ github.event.inputs.version.description }} | ||
# token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: send tweet | ||
uses: ethomson/send-tweet-action@v1 | ||
|