-
Notifications
You must be signed in to change notification settings - Fork 6
142 lines (133 loc) · 4.01 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
name: Release
concurrency: release
on:
workflow_dispatch:
push:
tags: ["v*"]
permissions:
contents: write
packages: write
id-token: write
jobs:
prepare:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
cache: true
go-version-file: go.mod
- shell: bash
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- uses: actions/cache@v4
if: matrix.os == 'ubuntu-latest'
with:
path: cmd/anchor/dist/linux
key: linux-${{ env.sha_short }}
- uses: actions/cache@v4
if: matrix.os == 'macos-latest'
with:
path: cmd/anchor/dist/darwin
key: darwin-${{ env.sha_short }}
- uses: actions/cache@v4
if: matrix.os == 'windows-latest'
with:
path: cmd/anchor/dist/windows
key: windows-${{ env.sha_short }}
enableCrossOsArchive: true
- name: non-windows flags
if: matrix.os != 'windows-latest'
shell: bash
run: echo 'flags=--skip chocolatey' >> $GITHUB_ENV
- name: windows flags
if: matrix.os == 'windows-latest'
shell: bash
run: echo 'flags=--skip homebrew' >> $GITHUB_ENV
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser-pro
version: latest
args: release --clean --split ${{ env.flags }}
workdir: cmd/anchor
env:
GITHUB_TOKEN: ${{ secrets._GITHUB_TOKEN }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
release:
runs-on: ubuntu-latest
needs: prepare
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
# Copy Caches
- shell: bash
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
path: cmd/anchor/dist/linux
key: linux-${{ env.sha_short }}
- uses: actions/cache@v4
with:
path: cmd/anchor/dist/darwin
key: darwin-${{ env.sha_short }}
- uses: actions/cache@v4
with:
path: cmd/anchor/dist/windows
key: windows-${{ env.sha_short }}
enableCrossOsArchive: true
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser-pro
version: latest
args: continue --merge
workdir: cmd/anchor
env:
GITHUB_TOKEN: ${{ secrets._GITHUB_TOKEN }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
publish-windows:
runs-on: windows-latest
needs: prepare
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# Copy Caches
- shell: bash
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
echo "RELEASE_VERSION=${GITHUB_REF:11}" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
path: cmd/anchor/dist/windows
key: windows-${{ env.sha_short }}
enableCrossOsArchive: true
- shell: bash
run: |
cp cmd/anchor/dist/windows/anchor.${{ env.RELEASE_VERSION }}.nupkg ./
- uses: actions/upload-artifact@v4
with:
name: anchor.${{ env.RELEASE_VERSION }}.nupkg
overwrite: true
path: cmd/anchor/dist/windows/anchor.${{ env.RELEASE_VERSION }}.nupkg
- shell: pwsh
run: |
choco push --source https://push.chocolatey.org/ --api-key "$env:CHOCOLATEY_API_KEY" anchor.${{ env.RELEASE_VERSION }}.nupkg
env:
CHOCOLATEY_API_KEY: ${{ secrets.CHOCOLATEY_API_KEY }}