File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 5353 with :
5454 go-version : ' 1.24'
5555
56+ - name : Clean build directory
57+ run : |
58+ # Remove any existing binaries to prevent contamination
59+ find . -name "dgctl*" -type f -delete || true
60+ find . -name "taco*" -type f -executable -delete || true
61+ find . -name "statesman*" -type f -executable -delete || true
62+
5663 - name : Derive app dir and version
5764 id : meta
5865 run : |
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ package main
33// Clean release test after fixing component names
44// Verifying Release-Please workflow with PAT token
55// Expecting automatic tag creation on merge
6+ // Testing binary cleanup to prevent dgctl contamination
67import (
78 "context"
89 "flag"
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ package main
33// Clean release test after fixing component names
44// Testing Release-Please with proper tag recognition
55// Should create version 0.1.2 for both components
6+ // Full end-to-end test with cleanup and proper tagging
67import (
78 "fmt"
89 "os"
You can’t perform that action at this time.
0 commit comments