Skip to content

Commit 0044686

Browse files
devonfw#499: changed native phase
changed native phase back to package removed extra minus
1 parent edcc9fa commit 0044686

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/nightly-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
shell: bash
5555
run: |
5656
cd cli
57-
mvn -B -ntp -Dideasy.assembly.id=${{ matrix.os }} -Pnative -DskipTests=true compile
57+
mvn -B -ntp -Dideasy.assembly.id=${{ matrix.os }} -Pnative -DskipTests=true package
5858
- name: Upload native image
5959
uses: actions/upload-artifact@v4
6060
with:

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
current_version="${current_version/ */}"
6262
next_version="${current_version/-SNAPSHOT/}"
6363
cd cli
64-
mvn -B -ntp -Drevision=${next_version} -Dideasy.assembly.id=${{ matrix.os }} -Pnative -DskipTests=true compile
64+
mvn -B -ntp -Drevision=${next_version} -Dideasy.assembly.id=${{ matrix.os }} -Pnative -DskipTests=true package
6565
- name: Upload native image
6666
uses: actions/upload-artifact@v4
6767
with:

cli/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
<goals>
159159
<goal>compile-no-fork</goal>
160160
</goals>
161-
<phase>compile</phase>
161+
<phase>package</phase>
162162
</execution>
163163
<execution>
164164
<id>test-native</id>
@@ -191,12 +191,12 @@
191191
<executions>
192192
<execution>
193193
<id>create-distribution</id>
194-
<phase>compile</phase>
194+
<phase>package</phase>
195195
<goals>
196196
<goal>single</goal>
197197
</goals>
198198
<configuration>
199-
<finalName>${project.artifactId}-${revision}-</finalName>
199+
<finalName>${project.artifactId}-${revision}</finalName>
200200
<appendAssemblyId>true</appendAssemblyId>
201201
<descriptors>
202202
<descriptor>/src/main/assembly/release-${ideasy.assembly.id}.xml</descriptor>

0 commit comments

Comments
 (0)