Skip to content

Commit 52d5f0d

Browse files
committed
Fix release workflow
1 parent d161412 commit 52d5f0d

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ jobs:
129129
context: op/standalone
130130
- uses: redhat-actions/push-to-registry@v2
131131
with:
132+
registry: quay.io/halconsole
132133
image: ${{ steps.build-image.outputs.image }}
133134
tags: ${{ steps.build-image.outputs.tags }}
134135
username: ${{ secrets.QUAY_USERNAME }}
@@ -153,11 +154,11 @@ jobs:
153154
components: native-image
154155
cache: maven
155156
- if: matrix.os == 'ubuntu-latest'
156-
run: ./mvnw --show-version --batch-mode --no-transfer-progress install -DskipTests -Dquarkus.native.container-build=false -P op,prod,native
157+
run: ./mvnw --show-version --batch-mode --no-transfer-progress install -Dquickly -P op,prod,native -Dskip.npm=false -Dquarkus.native.container-build=false
157158
- if: matrix.os == 'macos-latest'
158-
run: ./mvnw --show-version --batch-mode --no-transfer-progress install -DskipTests -Dquarkus.native.container-build=false -P op,prod,native
159+
run: ./mvnw --show-version --batch-mode --no-transfer-progress install -Dquickly -P op,prod,native -Dskip.npm=false -Dquarkus.native.container-build=false
159160
- if: matrix.os == 'windows-latest'
160-
run: .\mvnw.cmd --show-version --batch-mode --no-transfer-progress install -DskipTests "-Dquarkus.native.container-build=false" -P op,prod,native
161+
run: .\mvnw.cmd --show-version --batch-mode --no-transfer-progress install -Dquickly -P op,prod,native -Dskip.npm=false "-Dquarkus.native.container-build=false"
161162
- run: |
162163
APP_NAME="hal-op"
163164
VERSION="${{ steps.get-version.outputs.version-without-v }}"

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
- Fix release workflow
13+
1014
## [0.0.2] - 2025-11-08
1115

1216
Test release w/o major changes.

pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -445,8 +445,6 @@
445445
<impsort.skip>true</impsort.skip>
446446
<license.skip>true</license.skip>
447447
<maven.javadoc.skip>true</maven.javadoc.skip>
448-
<npm.skip>true</npm.skip>
449-
<skip.gwt>true</skip.gwt>
450448
<skip.npm>true</skip.npm>
451449
<skipITs>true</skipITs>
452450
<skipTests>true</skipTests>

0 commit comments

Comments
 (0)