Skip to content

Adds release-dryrun workflow to test releasing process #3

Adds release-dryrun workflow to test releasing process

Adds release-dryrun workflow to test releasing process #3

Workflow file for this run

name: release-dryrun
on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
release-dryrun:
strategy:
matrix:
java: '21'
os: 'windows-latest'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: adopt
- run:
- |

Check failure on line 31 in .github/workflows/release-dryrun.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release-dryrun.yml

Invalid workflow file

You have an error in your yaml syntax on line 31
mvn -DpushChanges=false \
clean \
-DpushChanges=false \
-DreleaseVersion=0.0-trial \
release:prepare \
-DlocalCheckout=true \
release:perform