Release new version #130
Workflow file for this run
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
name: Release new version | |
on: | |
workflow_dispatch: | |
inputs: | |
tag_name: | |
description: 'Tag name to publish' | |
required: true | |
jobs: | |
bump-version: | |
runs-on: ubuntu-latest | |
env: | |
newVersion: ${{ github.event.inputs.tag_name }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
ref: ci-auto-version-bump | |
- name: Bump version | |
run: | | |
newVersion=$(echo $newVersion | sed 's/^v//') | |
sed -i.bak "s/^version=.*/version=$newVersion/" gradle.properties | |
rm gradle.properties.bak | |
- name: Setup git config | |
run: | | |
git config user.name "GitHub Actions Bot" | |
git config user.email "<>" | |
- name: Commit version bump | |
run: | | |
git add gradle.properties | |
git commit -m "chore: Bump version to $newVersion" | |
- name: Tag version | |
run: | | |
git tag $newVersion | |
- name: Push changes | |
run: | | |
git push origin ci-auto-version-bump | |
# Push tag | |
git push origin $newVersion | |
build: | |
needs: bump-version | |
uses: ./.github/workflows/build.yml | |
with: | |
branch: ${{ github.event.inputs.tag_name }} | |
publish: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.inputs.tag_name}} | |
- name: Download uber-jar | |
uses: actions/[email protected] | |
with: | |
name: ${{ needs.build.outputs.uber-jar }} | |
- name: Download sources-jar | |
uses: actions/[email protected] | |
with: | |
name: ${{ needs.build.outputs.sources-jar }} | |
- uses: xresloader/upload-to-github-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
file: ${{ needs.build.outputs.uber-jar }} | |
tags: true | |
draft: true | |
tag_name: ${{ github.event.inputs.tag_name }} | |
# - name: Deploy to Maven Central repository | |
# run: ./gradlew publish | |
# env: | |
# MAVEN_REPO_USERNAME: ${{ secrets.MAVEN_REPO_USERNAME }} | |
# MAVEN_REPO_PASSWORD: ${{ secrets.MAVEN_REPO_PASSWORD }} | |
# GRADLE_SIGNING_KEY: ${{ secrets.GRADLE_SIGNING_KEY }} | |
# GRADLE_SIGNING_PASSWORD: ${{ secrets.GRADLE_SIGNING_PASSWORD }} |