Skip to content

Commit

Permalink
Adds release-dryrun workflow to test releasing process
Browse files Browse the repository at this point in the history
  • Loading branch information
damianszczepanik committed Nov 16, 2024
1 parent ef867f0 commit 7d326a4
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release-dryrun.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Perform trial release

on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
- reopened

jobs:
release:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: actions/setup-java@v4
with:
java-version: 21
distribution: adopt

- name: Build with Maven
run: >
mvn --batch-mode -DpushChanges=false -DpushChanges=false -DreleaseVersion=0.0-trial release:prepare -DlocalCheckout=true release:perform

0 comments on commit 7d326a4

Please sign in to comment.