Skip to content

Commit

Permalink
chore: Update Docker workflow to use 'latest' tag for image builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Ipmake committed Jan 31, 2025
1 parent a3b94e6 commit 9c5a94a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
run: docker buildx create --name perplexedBuilder --use

- name: Build and push the amd64 image
run: docker buildx build --platform linux/amd64 -t ipmake/perplexed:preview-amd64 . --push
run: docker buildx build --platform linux/amd64 -t ipmake/perplexed:latest . --push

- name: Build and push the arm64 image
run: docker buildx build --platform linux/arm64 -t ipmake/perplexed:preview-arm64 . --push
run: docker buildx build --platform linux/arm64 -t ipmake/perplexed:latest . --push

- name: Build and push multi-platform Docker image
run: docker buildx imagetools create --tag ipmake/perplexed:preview ipmake/perplexed:preview-amd64 ipmake/perplexed:preview-arm64
run: docker buildx imagetools create --tag ipmake/perplexed:latest ipmake/perplexed:latest ipmake/perplexed:latest

0 comments on commit 9c5a94a

Please sign in to comment.