Skip to content

Commit

Permalink
use dedicated upload artifact for vue.js site integration
Browse files Browse the repository at this point in the history
  • Loading branch information
sboeckelmann committed Dec 22, 2023
1 parent 8411bfc commit ab0e49e
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,11 +178,6 @@ jobs:
distribution: 'temurin'
cache: maven

- name: "Prepare Build"
run: >
mvn --no-transfer-progress --batch-mode clean package -Pci-build -DskipTests
- name: 'Download VUE.JS Artifact'
if: contains(github.ref, 'v')
uses: actions/download-artifact@v3
Expand All @@ -195,6 +190,10 @@ jobs:
rm -Rf testdata-generator-quarkus-rest-app/src/main/resources/static-web/ui
mv testdata-generator-ui/dist testdata-generator-quarkus-rest-app/src/main/resources/static-web/ui
- name: "Prepare Build"
run: >
mvn --no-transfer-progress --batch-mode clean package -Pci-build -DskipTests
- name: "Build linux/amd64 Image"
run: |
mvn --no-transfer-progress --batch-mode -Pci-build \
Expand Down Expand Up @@ -281,9 +280,6 @@ jobs:
distribution: 'temurin'
cache: maven

- name: "Prepare Build"
run: >
mvn --no-transfer-progress --batch-mode clean package -Pci-build -DskipTests
- name: 'Download VUE.JS Artifact'
if: contains(github.ref, 'v')
uses: actions/download-artifact@v3
Expand All @@ -296,6 +292,10 @@ jobs:
rm -Rf testdata-generator-quarkus-rest-app/src/main/resources/static-web/ui
mv testdata-generator-ui/dist testdata-generator-quarkus-rest-app/src/main/resources/static-web/ui
- name: "Prepare Build"
run: >
mvn --no-transfer-progress --batch-mode clean package -Pci-build -DskipTests
- name: "Build ${{matrix.platform}} native Image"
run: |
mvn --no-transfer-progress --batch-mode package -Dnative -Pci-build -DskipTests -f ./testdata-generator-quarkus-rest-app/pom.xml \
Expand Down Expand Up @@ -403,10 +403,6 @@ jobs:
native-image-job-reports: 'true'
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: "Prepare Build"
run: |
mvn --no-transfer-progress --batch-mode -Pci-build clean package -DskipTests
- name: 'Download VUE.JS Artifact'
if: contains(github.ref, 'v')
uses: actions/download-artifact@v3
Expand All @@ -419,6 +415,11 @@ jobs:
rm -Rf testdata-generator-quarkus-rest-app/src/main/resources/static-web/ui
mv testdata-generator-ui/dist testdata-generator-quarkus-rest-app/src/main/resources/static-web/ui
- name: "Prepare Build"
run: |
mvn --no-transfer-progress --batch-mode -Pci-build clean package -DskipTests
- name: "Build Native Quarkus Executable"
run: |
mvn --no-transfer-progress --batch-mode clean package -Pnative -Pci-build -DskipTests -f ./testdata-generator-quarkus-rest-app/pom.xml
Expand Down

0 comments on commit ab0e49e

Please sign in to comment.