Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Nov 19, 2024
1 parent 79dd852 commit da38da2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/actions/test-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,14 @@ runs:
VERSION_PART_MAJOR=$(echo "$VERSION" | awk -F'.' '{print $1}')
VERSION_PART_MINOR=$(echo "$VERSION" | awk -F'.' '{print $2}')
[ "$VERSION" == "main" ] && VERSION=preview
echo "IMAGE_ID: $IMAGE_ID"
echo "VERSION: $VERSION"
echo "VERSION_PART_MAJOR: $VERSION_PART_MAJOR"
echo "VERSION_PART_MINOR: $VERSION_PART_MINOR"
echo "image-id=$IMAGE_ID" >> "$GITHUB_OUTPUT"
echo "tag=$VERSION" >> "$GITHUB_OUTPUT"
echo "major-version=$MAJOR_VERSION" >> "$GITHUB_OUTPUT"
echo "minor-version=$MINOR_VERSION" >> "$GITHUB_OUTPUT"
echo "major-version=$VERSION_PART_MAJOR" >> "$GITHUB_OUTPUT"
echo "minor-version=$VERSION_PART_MINOR" >> "$GITHUB_OUTPUT"
shell: bash

- name: Build images
Expand Down

0 comments on commit da38da2

Please sign in to comment.