Skip to content

Commit

Permalink
Update alpine.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dogi authored Sep 26, 2023
1 parent b615e78 commit ad84a59
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,15 +124,16 @@ jobs:
- name: create manifests
id: message
run: |
repo=$name
export DOCKER_CLI_EXPERIMENTAL=enabled
tags="$name-tags"
date="$(date +%Y%m%d%H%M)"
docker manifest create $repo:latest $repo-tags:amd64 $repo-tags:arm $repo-tags:arm64
docker manifest create $repo:$date $repo-tags:amd64 $repo-tags:arm $repo-tags:arm64
docker manifest annotate $repo:latest $repo-tags:arm --os linux --arch arm
docker manifest annotate $repo:$date $repo-tags:arm --os linux --arch arm
docker manifest inspect $repo:latest
docker manifest push $repo:latest
docker manifest push $repo:$date
docker manifest create $name:latest $tags:amd64 $tags:arm $tags:arm64
docker manifest create $name:$date $tags:amd64 $tags:arm $tags:arm64
docker manifest annotate $name:latest $tags:arm --os linux --arch arm
docker manifest annotate $name:$date $tags:arm --os linux --arch arm
docker manifest inspect $name:latest
docker manifest push $name:latest
docker manifest push $name:$date
echo "message=true" >> $GITHUB_OUTPUT
message:
Expand Down

0 comments on commit ad84a59

Please sign in to comment.