-
Notifications
You must be signed in to change notification settings - Fork 4
46 lines (40 loc) · 908 Bytes
/
dev.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
name: Dev Release
on:
push:
branches:
- '*'
paths:
- '**.go'
- 'go.mod'
- '.github/**'
env:
TZ: Asia/Shanghai
GO_VERSION: '1.22'
permissions: write-all
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
- name: install task
run: |
echo "install task"
go install github.com/go-task/task/v3/cmd/task@latest
- name: install upx
uses: crazy-max/ghaction-upx@v3
with:
install-only: true
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release -f .goreleaser.dev.yaml --clean
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}