-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (38 loc) · 1.07 KB
/
wireproxy.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
name: Cross compile WireProxy
on:
workflow_dispatch:
# push:
# tags:
# - "v*"
jobs:
WireProxy:
name: Cross compile WireProxy
runs-on: ubuntu-20.04
env:
workdir: ./WireProxy
VERSION: 1.0.3
steps:
- name: Checkout code
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Git clone WireProxy
run: |
git clone https://github.com/octeep/wireproxy.git ${{ env.workdir }}
cp ./.github/wireproxy-releaser.yml ${{ env.workdir }}/.goreleaser.yml
- name: Set up GoReleaser
uses: actions/[email protected]
with:
go-version: "1.18"
- name: Run GoReleaser
uses: goreleaser/[email protected]
with:
distribution: goreleaser
workdir: ${{ env.workdir }}
version: latest
args: release --clean
- name: Release binaries
uses: softprops/action-gh-release@v2
with:
tag_name: WireProxy_v${{ env.VERSION }}
files: ${{ env.workdir }}/dist/*.tar.gz