Skip to content

Commit b4fbea2

Browse files
committed
fixed go releaser
1 parent 185c773 commit b4fbea2

File tree

2 files changed

+62
-63
lines changed

2 files changed

+62
-63
lines changed

.github/workflows/release.yaml

+37-38
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@ on:
22
push:
33
# Sequence of patterns matched against refs/tags
44
tags:
5-
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
5+
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
66

77
name: Create Release
88

99
jobs:
10-
1110
cli:
1211
name: Release the CLI
1312
runs-on: ubuntu-latest
@@ -16,17 +15,17 @@ jobs:
1615
uses: actions/checkout@v3
1716
with:
1817
fetch-depth: 0
19-
18+
2019
- name: Set up Go
21-
uses: actions/setup-go@v3
20+
uses: actions/setup-go@v4
2221
with:
23-
go-version: 1.18
22+
go-version: stable
2423

2524
- name: GoReleaser
26-
uses: goreleaser/goreleaser-action@v3
25+
uses: goreleaser/goreleaser-action@v4
2726
with:
2827
version: latest
29-
args: release --rm-dist
28+
args: release --clean
3029
env:
3130
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3231

@@ -36,38 +35,38 @@ jobs:
3635
runs-on: ubuntu-latest
3736

3837
steps:
39-
- name: Set up Go 1.18.x
40-
uses: actions/setup-go@v3
41-
with:
42-
go-version: 1.18.x
38+
- name: Set up Go 1.19.x
39+
uses: actions/setup-go@v4
40+
with:
41+
go-version: 1.19.x
4342

44-
# will install latest ko version and default login/configure
45-
# KO_DOCKER_REPO to ghcr.io
46-
- name: Setup ko for ghcr.io
47-
uses: imjasonh/[email protected]
48-
49-
- name: Checkout
50-
uses: actions/checkout@v3
51-
with:
52-
fetch-depth: 1
43+
# will install latest ko version and default login/configure
44+
# KO_DOCKER_REPO to ghcr.io
45+
- name: Setup ko for ghcr.io
46+
uses: imjasonh/[email protected]
5347

54-
- name: Get Release URL
55-
id: get_release_url
56-
uses: bruceadams/[email protected]
57-
env:
58-
GITHUB_TOKEN: ${{ github.token }}
48+
- name: Checkout
49+
uses: actions/checkout@v3
50+
with:
51+
fetch-depth: 1
5952

60-
- name: Build and Publish images, Produce release artifact.
61-
run: |
62-
ko resolve --platform=all --tags $(basename "${{ github.ref }}" ) -BRf config/ > release.yaml
53+
- name: Get Release URL
54+
id: get_release_url
55+
uses: bruceadams/[email protected]
56+
env:
57+
GITHUB_TOKEN: ${{ github.token }}
58+
59+
- name: Build and Publish images, Produce release artifact.
60+
run: |
61+
ko resolve --platform=all --tags $(basename "${{ github.ref }}" ) -BRf config/ > release.yaml
6362
64-
- name: Upload Release Asset
65-
id: upload-release-asset
66-
uses: actions/upload-release-asset@v1
67-
env:
68-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
69-
with:
70-
upload_url: ${{ steps.get_release_url.outputs.upload_url }}
71-
asset_path: ./release.yaml
72-
asset_name: release.yaml
73-
asset_content_type: text/plain
63+
- name: Upload Release Asset
64+
id: upload-release-asset
65+
uses: actions/upload-release-asset@v1
66+
env:
67+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
68+
with:
69+
upload_url: ${{ steps.get_release_url.outputs.upload_url }}
70+
asset_path: ./release.yaml
71+
asset_name: release.yaml
72+
asset_content_type: text/plain

.goreleaser.yml

+25-25
Original file line numberDiff line numberDiff line change
@@ -5,39 +5,39 @@ before:
55
# you may remove this if you don't need go generate
66
- go generate ./...
77
builds:
8-
- id: "kn-vsphere-build"
9-
binary: kn-vsphere
10-
main: ./plugins/vsphere/cmd/vsphere/main.go
11-
env:
12-
- CGO_ENABLED=0
13-
flags:
14-
- -mod=vendor
15-
ldflags:
16-
- -X 'github.com/vmware-tanzu/sources-for-knative/plugins/vsphere/pkg/command/version.BuildDate={{.Date}}'
17-
- -X 'github.com/vmware-tanzu/sources-for-knative/plugins/vsphere/pkg/command/version.Version={{.Version}}'
18-
- -X 'github.com/vmware-tanzu/sources-for-knative/plugins/vsphere/pkg/command/version.GitRevision={{.Commit}}'
8+
- id: "kn-vsphere-build"
9+
binary: kn-vsphere
10+
main: ./plugins/vsphere/cmd/vsphere/main.go
11+
env:
12+
- CGO_ENABLED=0
13+
flags:
14+
- -mod=vendor
15+
ldflags:
16+
- -X 'github.com/vmware-tanzu/sources-for-knative/plugins/vsphere/pkg/command/version.BuildDate={{.Date}}'
17+
- -X 'github.com/vmware-tanzu/sources-for-knative/plugins/vsphere/pkg/command/version.Version={{.Version}}'
18+
- -X 'github.com/vmware-tanzu/sources-for-knative/plugins/vsphere/pkg/command/version.GitRevision={{.Commit}}'
1919
archives:
20-
- replacements:
21-
darwin: Darwin
22-
linux: Linux
23-
windows: Windows
24-
386: i386
25-
amd64: x86_64
26-
name_template: "kn-vsphere_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
27-
files:
28-
- LICENSE
29-
- ./plugins/vsphere/README.adoc
30-
wrap_in_directory: true
20+
- id: foo
21+
name_template: >-
22+
{{ .ProjectName }}_
23+
{{- title .Os }}_
24+
{{- if eq .Arch "amd64" }}x86_64
25+
{{- else if eq .Arch "386" }}i386
26+
{{- else }}{{ .Arch }}{{ end }}
27+
files:
28+
- LICENSE
29+
- ./plugins/vsphere/README.adoc
30+
wrap_in_directory: true
3131
checksum:
32-
name_template: 'checksums.txt'
32+
name_template: "checksums.txt"
3333
snapshot:
3434
name_template: "{{ .Tag }}-next"
3535
changelog:
3636
sort: asc
3737
filters:
3838
exclude:
39-
- '^docs:'
40-
- '^test:'
39+
- "^docs:"
40+
- "^test:"
4141
release:
4242
draft: false
4343
prerelease: false

0 commit comments

Comments
 (0)