Skip to content

Commit

Permalink
Fix maven action syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
thebe14 committed Oct 3, 2024
1 parent 20be171 commit eac11bc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:

- name: Build with Maven
run: mvn -B package --file pom.xml

- run: mkdir staging
- run: mkdir staging/logs
- run: cp target/quarkus-app/*.jar staging/
- run: cp target/quarkus-app/lib/ staging/lib/
- run: cp target/quarkus-app/app/ staging/app/
- run: cp target/quarkus-app/quarkus/ staging/quarkus/
- run: cp -r target/quarkus-app/lib/ staging/lib/
- run: cp -r target/quarkus-app/app/ staging/app/
- run: cp -r target/quarkus-app/quarkus/ staging/quarkus/
- run: mkdir staging/logs
- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit eac11bc

Please sign in to comment.