From 39c534cfb2ee4c7a64752ad027c0dfa490091798 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Z=C3=B6ller?= Date: Thu, 1 Feb 2024 22:57:29 +0100 Subject: [PATCH] Disable native image build, fix path for Procfile --- .github/workflows/maven.yml | 7 +------ Procfile | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 805bb78..c07f430 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -18,12 +18,7 @@ jobs: distribution: 'graalvm' cache: maven - name: Build with Maven - run: mvn clean package -Dnative - - name: Copy artifacts to target - run: | - cp target/backend-proxy-1.0-SNAPSHOT-runner target/dist/application - cp -R $GRAALVM_HOME/jre/lib/amd64 target/dist/lib - cp $GRAALVM_HOME/jre/lib/security/cacerts target/dist/cacerts + run: mvn clean package # Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive - name: Update dependency graph diff --git a/Procfile b/Procfile index 9583c0c..358f996 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: java -Dquarkus.http.port=$PORT -jar target/backend-proxy-1.0-SNAPSHOT-runner.jar +web: java -Dquarkus.http.port=$PORT -jar target/quarkus-app/quarkus-run.jar \ No newline at end of file