Skip to content

Commit

Permalink
fix(ci): add missing backslashes in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kkujawa-sumo committed Mar 13, 2024
1 parent c30c232 commit e78339f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release_builds.yml
Expand Up @@ -366,7 +366,7 @@ jobs:
cp artifacts/${{ steps.set_filename_fips.outputs.filename_fips }} otelcol-sumo
make build-push-container-ubi \
BUILD_TAG=${{ steps.extract_tag.outputs.tag }} \
PLATFORM=${{ matrix.arch_os }}
PLATFORM=${{ matrix.arch_os }} \
BUILD_TYPE_SUFFIX="-ubi-fips"
- name: Build and push image to Open Source ECR
Expand All @@ -382,7 +382,7 @@ jobs:
cp artifacts/${{ steps.set_filename.outputs.filename }} otelcol-sumo
make build-push-container-ubi \
BUILD_TAG=${{ steps.extract_tag.outputs.tag }} \
PLATFORM=${{ matrix.arch_os }}
PLATFORM=${{ matrix.arch_os }} \
BUILD_TYPE_SUFFIX="-ubi"
push-docker-manifest:
Expand Down Expand Up @@ -430,7 +430,7 @@ jobs:
run: |
make push-container-manifest \
BUILD_TAG=${{ steps.extract_tag.outputs.tag }} \
PLATFORMS="linux/amd64"
PLATFORMS="linux/amd64" \
BUILD_TYPE_SUFFIX="-ubi-fips"
- name: Push joint container manifest for all platforms to Open Source ECR
Expand All @@ -443,7 +443,7 @@ jobs:
run: |
make push-container-manifest \
BUILD_TAG=${{ steps.extract_tag.outputs.tag }} \
PLATFORMS="linux/amd64"
PLATFORMS="linux/amd64" \
BUILD_TYPE_SUFFIX="-ubi"
package-msi:
Expand Down

0 comments on commit e78339f

Please sign in to comment.