Skip to content

Commit 68622fb

Browse files
committed
library-api: deployment fix!!!!!
1 parent 1f848a6 commit 68622fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ jobs:
4040
# Extract version from pom.xml (source of truth) using Maven
4141
- name: 'Extract version from pom.xml'
4242
id: extract_version
43-
working-directory: library-api
4443
run: |
45-
VERSION=$(cd library-api && devbox run -q -- mvn help:evaluate -Dexpression=project.version -q -DforceStdout | tr -d '\n' | xargs)
44+
cd library-api
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 '.' '-')

0 commit comments

Comments
 (0)