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
4 changes: 2 additions & 2 deletions caddy.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
name: caddy
version: 2.7.4
epoch: 0
epoch: 1
description: Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS
copyright:
- license: Apache-2.0
Expand All @@ -11,7 +11,6 @@ environment:
packages:
- busybox
- ca-certificates-bundle
- go

pipeline:
- uses: git-checkout
Expand All @@ -23,6 +22,7 @@ pipeline:
# TODO: Add support for plugins
- uses: go/build
with:
go-package: go-1.20 # pin to a specific version of Go as not working with go-1.21 yet
packages: ./cmd/caddy
output: caddy
ldflags: -s -w
Expand Down
4 changes: 2 additions & 2 deletions cloudflared.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
name: cloudflared
version: 2023.5.1
epoch: 1
epoch: 2
description: Cloudflare Tunnel client
copyright:
- license: Apache-2.0
Expand All @@ -12,7 +12,6 @@ environment:
- wolfi-baselayout
- ca-certificates-bundle
- busybox
- go

pipeline:
- uses: git-checkout
Expand All @@ -23,6 +22,7 @@ pipeline:

- uses: go/build
with:
go-package: go-1.20 # pin to a specific version of Go as not working with go-1.21 yet
packages: ./cmd/cloudflared
output: cloudflared
ldflags: -s -w -extldflags=-static -X "main.Version=${{package.version}}"
Expand Down
4 changes: 2 additions & 2 deletions coredns.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
name: coredns
version: 1.11.1
epoch: 0
epoch: 1
description: CoreDNS is a DNS server that chains plugins
copyright:
- license: Apache-2.0
Expand All @@ -18,7 +18,6 @@ environment:
- busybox
- bash
- make
- go
- libcap-utils
environment:
CGO_ENABLED: 0
Expand All @@ -36,6 +35,7 @@ pipeline:

- uses: go/build
with:
go-package: go-1.20 # pin to a specific version of Go as not working with go-1.21 yet
packages: .
output: coredns
ldflags: -s -w -X github.com/coredns/coredns/coremain.GitCommit=v${{package.version}}
Expand Down