Skip to content

Commit

Permalink
fix: syntax to extract Quarkus version
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Laprun <[email protected]>
  • Loading branch information
metacosm committed Nov 21, 2023
1 parent 102f82c commit 1d515c8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Java Operator SDK Extension
release:
current-version: 6.5.0.Beta1
current-version: 6.5.0.Beta2
next-version: 6.5.0-SNAPSHOT

8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:

- uses: actions/checkout@v3

- name: Retrieve Quarkus version
id: quarkus-version
run: echo "quarkus_version=$(mvn help:evaluate -Dexpression=quarkus.version -q -DforceStdout)" >> $GITHUB_OUTPUT

- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v5
Expand Down Expand Up @@ -54,10 +58,6 @@ jobs:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}

- name: Retrieve Quarkus version
id: quarkus-version
run: echo "quarkus_version=${mvn help:evaluate -Dexpression=quarkus.version -q -DforceStdout}" >> $GITHUB_OUTPUT

- name: Push tags
run: git push && git push --tags

Expand Down
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/includes/attributes.adoc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
:project-version: 6.5.0.Beta1
:project-version: 6.5.0.Beta2

:examples-dir: ./../examples/

0 comments on commit 1d515c8

Please sign in to comment.