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/cli_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ name: release cli

jobs:
binary:
if: "!startsWith(github.event.release.tag_name, 'taco/')"
runs-on: ubuntu-latest

steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/dgctl_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ name: release dgctl

jobs:
binary:
if: "!startsWith(github.event.release.tag_name, 'taco/')"
strategy:
matrix:
arch: [arm, arm64, amd64, "386"]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ee_cli_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ name: release ee cli

jobs:
binary:
if: "!startsWith(github.event.release.tag_name, 'taco/')"
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 2 additions & 0 deletions taco/cmd/statesman/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ package main
// Verifying Release-Please workflow with PAT token
// 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
import (
"context"
"flag"
Expand Down
2 changes: 2 additions & 0 deletions taco/cmd/taco/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ package main
// 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
// Fixed tag collision with existing release workflows
// Should now have clean releases without dgctl contamination
import (
"fmt"
"os"
Expand Down
Loading