Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/taco-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ jobs:
context: ./taco
file: ./taco/Dockerfile_statesman
push: true
platforms: linux/amd64,linux/arm64,linux/386
tags: ${{ steps.docker-meta.outputs.tags }}
labels: ${{ steps.docker-meta.outputs.labels }}
build-args: |
Expand Down
3 changes: 2 additions & 1 deletion taco/cmd/statesman/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ package main
// Expecting automatic tag creation on merge
// Testing binary cleanup to prevent dgctl contamination
// Added workflow exclusions to prevent release collisions
// Testing isolated taco releases without interference
// Testing isolated taco releases without interference
// Testing multi-arch Docker builds with linux/amd64,arm64,386 support
import (
"context"
"flag"
Expand Down
1 change: 1 addition & 0 deletions taco/cmd/taco/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ package main
// Full end-to-end test with cleanup and proper tagging
// Fixed tag collision with existing release workflows
// Should now have clean releases without dgctl contamination
// Testing multi-arch Docker builds and Helm-compatible tags
import (
"fmt"
"os"
Expand Down
Loading