Skip to content

Commit 1325837

Browse files
committed
library-api: yet another fix to deployment
1 parent 5490f0e commit 1325837

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deploy-library-api.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
id: extract_version
4343
working-directory: library-api
4444
run: |
45-
VERSION=$(devbox run -- mvn help:evaluate -Dexpression=project.version -q -DforceStdout | tr -d '\n' | xargs)
45+
VERSION=$(devbox run -q -- mvn help:evaluate -Dexpression=project.version -q -DforceStdout | tr -d '\n' | xargs)
4646
echo "version=${VERSION}" >> "$GITHUB_OUTPUT"
4747
# Create revision-safe version string (replace dots with dashes for Cloud Run)
4848
REVISION_VERSION=$(echo "${VERSION}" | tr '.' '-')
@@ -53,7 +53,7 @@ jobs:
5353
# Validate that git tag exists for this pom.xml version
5454
- name: 'Validate git tag matches pom.xml version'
5555
run: |
56-
devbox run -- bin/validate-library-api-version
56+
devbox run -q -- bin/validate-library-api-version
5757
5858
# Configure Workload Identity Federation and generate an access token
5959
- id: 'auth'
@@ -67,13 +67,13 @@ jobs:
6767
# Configure Docker to use gcloud as a credential helper (using devbox gcloud)
6868
- name: 'Configure Docker'
6969
run: |
70-
devbox run -- gcloud auth configure-docker ${{ env.REGION }}-docker.pkg.dev
70+
devbox run -q -- gcloud auth configure-docker ${{ env.REGION }}-docker.pkg.dev
7171
7272
# Build the Quarkus app with Maven using devbox environment
7373
- name: 'Build Quarkus App'
7474
working-directory: library-api
7575
run: |
76-
devbox run build-library-api-ci
76+
devbox run -q build-library-api-ci
7777
7878
- name: 'Build and Push Container'
7979
working-directory: library-api

0 commit comments

Comments
 (0)