-
Notifications
You must be signed in to change notification settings - Fork 1
77 lines (64 loc) · 1.99 KB
/
go.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
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
workflow_dispatch:
push:
# Publish semver tags as releases.
tags: [ 'v*' ]
# release:
# types: [published]
# push:
# branches: [ "main" ]
# pull_request:
# branches: [ "main" ]
jobs:
build:
strategy:
matrix:
build: [macos, linux, windows]
include:
- build: macos
os: macos-latest
archive-name: darwin
exe-name: EasyGetProxy
- build: linux
os: ubuntu-latest
archive-name: linux
exe-name: EasyGetProxy
- build: windows
os: windows-latest
archive-name: windows
exe-name: EasyGetProxy.exe
permissions:
contents: write
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Build
run: go build -v -o ${{ matrix.exe-name }} .
- name: Test
run: go test -v ./...
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Prepare Packaging
run: tar zcvf EasyGetProxy_${{ github.ref_name }}_${{ matrix.archive-name }}.tar.gz ${{ matrix.exe-name }} LICENSE config assets
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: EasyGetProxy_${{ github.ref_name }}_${{ matrix.archive-name }}.tar.gz
path: EasyGetProxy_${{ github.ref_name }}_${{ matrix.archive-name }}.tar.gz
- name: Release Version
uses: ncipollo/release-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
allowUpdates: true
artifacts: EasyGetProxy_${{ github.ref_name }}_${{ matrix.archive-name }}.tar.gz