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
3 changes: 1 addition & 2 deletions .github/workflows/taco-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,8 @@ jobs:
with:
images: ghcr.io/${{ github.repository }}/taco-statesman
tags: |
type=raw,value=${{ steps.meta.outputs.version }}
type=ref,event=tag
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=raw,value=latest

- name: Build and push Docker image
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 @@ -8,6 +8,7 @@ package main
// Testing isolated taco releases without interference
// Testing multi-arch Docker builds with linux/amd64,arm64,386 support
// Removed linux/386 due to Ubuntu 24.04 platform compatibility
// Fixed semver pattern issue - using manual version for Docker tags
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 @@ -8,6 +8,7 @@ package main
// Should now have clean releases without dgctl contamination
// Testing multi-arch Docker builds and Helm-compatible tags
// Fixed linux/386 platform issue - now testing amd64,arm64 only
// Testing manual version derivation for Helm-compatible Docker tags
import (
"fmt"
"os"
Expand Down
Loading