We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f848a6 commit 68622fbCopy full SHA for 68622fb
.github/workflows/deploy-library-api.yml
@@ -40,9 +40,9 @@ jobs:
40
# Extract version from pom.xml (source of truth) using Maven
41
- name: 'Extract version from pom.xml'
42
id: extract_version
43
- working-directory: library-api
44
run: |
45
- VERSION=$(cd library-api && devbox run -q -- mvn help:evaluate -Dexpression=project.version -q -DforceStdout | tr -d '\n' | xargs)
+ cd library-api
+ VERSION=$(devbox run -q -- mvn help:evaluate -Dexpression=project.version -q -DforceStdout | tr -d '\n' | xargs)
46
echo "version=${VERSION}" >> "$GITHUB_OUTPUT"
47
# Create revision-safe version string (replace dots with dashes for Cloud Run)
48
REVISION_VERSION=$(echo "${VERSION}" | tr '.' '-')
0 commit comments