Skip to content

Commit aa9b2b1

Browse files
authored
ci: Perform 0.1.0 release (#74)
Update project version to 0.1.0 and set next version to 0.2.0 Signed-off-by: Eric Deandrea <[email protected]>
1 parent 52d6d9e commit aa9b2b1

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
release:
2-
current-version: 0.0.1
3-
next-version: 0.1.0
2+
current-version: 0.1.0
3+
next-version: 0.2.0

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ on:
1515
description: The version to release (e.g. 1.0.0)
1616
required: true
1717
type: string
18+
dryrun:
19+
description: Perform a dry-run release
20+
required: true
21+
type: boolean
22+
default: false
1823

1924
concurrency:
2025
group: ${{ github.workflow }}-${{ github.ref }}
@@ -96,7 +101,7 @@ jobs:
96101
JRELEASER_GPG_PASSPHRASE: ${{ secrets.JRELEASER_GPG_PASSPHRASE }}
97102
JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.JRELEASER_GPG_PUBLIC_KEY }}
98103
JRELEASER_GPG_SECRET_KEY: ${{ secrets.JRELEASER_GPG_SECRET_KEY }}
99-
JRELEASER_DRY_RUN: true
104+
JRELEASER_DRY_RUN: ${{ inputs.dryrun }}
100105
run: |
101106
echo "Releasing version ${{ env.PREVIOUS_VERSION }} -> ${{ env.CURRENT_VERSION }}"
102107
./gradlew --no-daemon :jreleaserFullRelease

0 commit comments

Comments
 (0)