Skip to content

Commit

Permalink
fix action quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
thirdeyenick committed Jan 30, 2025
1 parent c1898ea commit 74435de
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-and-publish-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ jobs:
- name: build controller binary
run: >
CGO_ENABLED=0 GOOS=linux go build -o controller/controller
-ldflags="-X 'go.universe.tf/metallb/internal/version.version=${{github.ref_name}}"
"-X go.universe.tf/metallb/internal/version.gitCommit=${{github.sha}}"'
-ldflags="-X 'go.universe.tf/metallb/internal/version.version=${{github.ref_name}}'
-X 'go.universe.tf/metallb/internal/version.gitCommit=${{github.sha}}'"
./controller
- name: build speaker binary
run: >
CGO_ENABLED=0 GOOS=linux go build -o speaker/speaker
-ldflags="-X 'go.universe.tf/metallb/internal/version.version=${{github.ref_name}}"
"-X go.universe.tf/metallb/internal/version.gitCommit=${{github.sha}}"'
-ldflags="-X 'go.universe.tf/metallb/internal/version.version=${{github.ref_name}}'
-X 'go.universe.tf/metallb/internal/version.gitCommit=${{github.sha}}'"
./speaker
- name: build frr-metrics binary
run: >
CGO_ENABLED=0 GOOS=linux go build -o speaker/frr-metrcics
-ldflags="-X 'go.universe.tf/metallb/internal/version.version=${{github.ref_name}}"
"-X go.universe.tf/metallb/internal/version.gitCommit=${{github.sha}}"'
-ldflags="-X 'go.universe.tf/metallb/internal/version.version=${{github.ref_name}}'
-X 'go.universe.tf/metallb/internal/version.gitCommit=${{github.sha}}'"
./frr-metrics/exporter.go
- name: copy frr-reloader.sh script
run: cp frr-reloader/frr-reloader.sh /speaker
Expand Down

0 comments on commit 74435de

Please sign in to comment.