Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
lxhao61 authored Feb 8, 2023
1 parent a0dd96e commit ded8180
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/caddy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ jobs:
GOOS: linux,
release: true
}
- {
name: "linux-armv5",
GOARCH: arm,
GOARM: 5,
GOOS: linux,
release: true
}
- {
name: "linux-s390x",
GOARCH: s390x,
Expand All @@ -53,20 +60,20 @@ jobs:
release: true
}
- {
name: "freebsd-arm",
GOARCH: arm,
name: "freebsd-arm64",
GOARCH: arm64,
GOOS: linux,
release: true
}
- {
name: "darwin-arm64",
GOARCH: arm64,
name: "darwin-amd64",
GOARCH: amd64,
GOOS: darwin,
release: true
}
- {
name: "darwin-amd64",
GOARCH: amd64,
name: "darwin-arm64",
GOARCH: arm64,
GOOS: darwin,
release: true
}
Expand All @@ -78,7 +85,7 @@ jobs:
- name: Install go
uses: actions/setup-go@v3
with:
go-version: '1.19'
go-version: '1.20'
check-latest: true

- name: Install xcaddy
Expand Down

0 comments on commit ded8180

Please sign in to comment.