Skip to content

Commit

Permalink
devonfw#563: adjusted assemblies
Browse files Browse the repository at this point in the history
made sure that assemblies use matrix os names
removed merge-multiple to extract artifacts into own folders
  • Loading branch information
jan-vcapgemini committed Nov 6, 2024
1 parent 5b2e64b commit f84007b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,12 @@ jobs:
with:
pattern: natives-*
path: ./cli/target/
merge-multiple: true
- run: |
mvn -B -ntp -Dstyle.color=always install
- name: Upload project
uses: actions/upload-artifact@v4
with:
path: ./cli/target/*.tgz
- name: Deploy to OSSRH nexus
env:
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion cli/src/main/assembly/release-linux-x64.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<directory>${project.build.directory}</directory>
<outputDirectory>./bin</outputDirectory>
<includes>
<include>${imageName}</include>
<include>natives-ubuntu-latest/${imageName}</include>
</includes>
</fileSet>
<fileSet>
Expand Down
2 changes: 1 addition & 1 deletion cli/src/main/assembly/release-mac-arm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<directory>${project.build.directory}</directory>
<outputDirectory>./bin</outputDirectory>
<includes>
<include>${imageName}</include>
<include>natives-macos-latest/${imageName}</include>
</includes>
</fileSet>
<fileSet>
Expand Down
2 changes: 1 addition & 1 deletion cli/src/main/assembly/release-mac-x64.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<directory>${project.build.directory}</directory>
<outputDirectory>./bin</outputDirectory>
<includes>
<include>${imageName}</include>
<include>natives-macos-13/${imageName}</include>
</includes>
</fileSet>
<fileSet>
Expand Down
2 changes: 1 addition & 1 deletion cli/src/main/assembly/release-win-x64.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<directory>${project.build.directory}</directory>
<outputDirectory>./bin</outputDirectory>
<includes>
<include>${imageName}.exe</include>
<include>natives-windows-latest/${imageName}.exe</include>
</includes>
</fileSet>
<fileSet>
Expand Down

0 comments on commit f84007b

Please sign in to comment.