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 beee874 commit f12fb3bCopy full SHA for f12fb3b
2 files changed
.github/workflows/deploy-library-api.yml
@@ -42,7 +42,7 @@ jobs:
42
id: extract_version
43
working-directory: library-api
44
run: |
45
- VERSION=$(devbox run -- mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
+ VERSION=$(devbox run get-library-api-version)
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 '.' '-')
devbox.json
@@ -23,6 +23,10 @@
23
"cd library-api",
24
"quarkus build --no-tests"
25
],
26
+ "get-library-api-version": [
27
+ "cd library-api",
28
+ "mvn help:evaluate -Dexpression=project.version -q -DforceStdout"
29
+ ],
30
"build-builder-api-ci": [
31
"cd builder-api",
32
0 commit comments