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
7 changes: 7 additions & 0 deletions .github/workflows/taco-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,13 @@ jobs:
with:
go-version: '1.24'

- name: Clean build directory
run: |
# Remove any existing binaries to prevent contamination
find . -name "dgctl*" -type f -delete || true
find . -name "taco*" -type f -executable -delete || true
find . -name "statesman*" -type f -executable -delete || true

- name: Derive app dir and version
id: meta
run: |
Expand Down
1 change: 1 addition & 0 deletions taco/cmd/statesman/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package main
// Clean release test after fixing component names
// Verifying Release-Please workflow with PAT token
// Expecting automatic tag creation on merge
// Testing binary cleanup to prevent dgctl contamination
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 @@ -3,6 +3,7 @@ package main
// Clean release test after fixing component names
// Testing Release-Please with proper tag recognition
// Should create version 0.1.2 for both components
// Full end-to-end test with cleanup and proper tagging
import (
"fmt"
"os"
Expand Down
Loading