Skip to content

Commit b45e107

Browse files
committed
Fix autoscaler version extraction in workflow job
1 parent 922f92a commit b45e107

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/main.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,13 @@ jobs:
1111
- name: "Clone repository"
1212
uses: actions/checkout@v4
1313
- name: "Write version to outputs"
14-
run: echo autoscaler_version=$(grep -oP '(?<=autoscaler_version\s?=\s?")[^"]*' version.tf) >> "$GITHUB_OUTPUT"
14+
run: |
15+
VERSION=$(grep -oP '(?<=autoscaler_version = ")[^"]*' version.tf)
16+
if [ -z "${VERSION}" ]; then exit 1; fi
17+
echo autoscaler_version=${VERSION} >> "$GITHUB_OUTPUT"
18+
1519
build_docker_image:
16-
name: "Build/Push Docker Image"
20+
name: "Build/Push autoscaler Image"
1721
needs: extract_version
1822
runs-on: ubuntu-latest
1923
permissions:

0 commit comments

Comments
 (0)