Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
fix(ci): buildx tags are different
Browse files Browse the repository at this point in the history
  • Loading branch information
bsherman committed May 2, 2024
1 parent c4bdcd9 commit c200444
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@ jobs:
echo "alias_tags=${alias_tags[*]}" >> $GITHUB_OUTPUT
# in addition to existing tag logic, add docker-buildx friendly tags
echo "BUILDX_TAGS<<EOF" >> $GITHUB_ENV
for TAG in "${BUILD_TAGS[@]}"; do
echo "type=raw,value=${TAG}" >> $GITHUB_ENV
done
echo "EOF" >> $GITHUB_ENV
- name: Retrieve akmods signing key
run: |
mkdir -p certs
Expand Down Expand Up @@ -122,7 +129,7 @@ jobs:
context: .
file: ./Containerfile
tags: |
${{ steps.generate-tags.outputs.alias_tags }}
${{ env.BUILDX_TAGS }}
build-args: |
SOURCE_IMAGE=${{ env.SOURCE_IMAGE }}
COREOS_VERSION=${{ matrix.coreos_version }}
Expand Down

0 comments on commit c200444

Please sign in to comment.