-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release a new version with GitHub Actions (#887)
Motivation: If releases are performed through an automated task, mistakes can be reduced and more validation can be added. Modifications: - Add `tag-new-release.yml` to tag a new version with GitHub Actions dispatch UI. Result: Automated release process
- Loading branch information
Showing
2 changed files
with
71 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: Release a new Central Dogma version | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
release_version: | ||
description: 'Release Version' | ||
required: true | ||
type: string | ||
next_version: | ||
description: 'Next Version' | ||
required: true | ||
type: string | ||
|
||
env: | ||
LC_ALL: "en_US.UTF-8" | ||
|
||
jobs: | ||
tag-new-version: | ||
if: github.repository == 'line/centraldogma' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Validate inputs | ||
run: | | ||
if [[ ! "${{ inputs.release_version }}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then | ||
echo "Error: 'release_version' should be in SemVer format." | ||
exit 1 | ||
fi | ||
if [[ ! "${{ inputs.next_version }}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then | ||
echo "Error: 'next_version' should be in SemVer format." | ||
exit 1 | ||
fi | ||
- uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.GH_ACCESS_TOKEN }} | ||
|
||
- name: Set up Git remote | ||
run: | | ||
git remote set-url origin https://github.com/line/centraldogma.git | ||
shell: bash | ||
|
||
- name: Import GPG key | ||
id: import_gpg | ||
uses: crazy-max/ghaction-import-gpg@v6 | ||
with: | ||
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | ||
passphrase: ${{ secrets.GPG_PASSWORD }} | ||
git_user_signingkey: true | ||
git_commit_gpgsign: true | ||
|
||
- id: setup-jdk-17 | ||
name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
|
||
- name: Set up Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
|
||
- name: Bump up version | ||
run: | | ||
./gradlew --no-daemon --stacktrace --max-workers=1 release \ | ||
-PreleaseVersion=${{ inputs.release_version }} \ | ||
-PnextVersion=${{ inputs.next_version }} | ||
shell: bash |
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