Skip to content

Commit 4aea5bf

Browse files
author
trubb
committed
add release workflow
1 parent 73fd1b7 commit 4aea5bf

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

.github/workflows/release.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: release!
2+
on:
3+
release:
4+
types: [created]
5+
6+
jobs:
7+
releases-matrix:
8+
name: Release Go Binary
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
goos: [linux, windows]
13+
goarch: [amd64]
14+
steps:
15+
- uses: actions/checkout@v2
16+
- uses: wangyoucao577/[email protected]
17+
with:
18+
github_token: ${{ secrets.GITHUB_TOKEN }}
19+
goos: ${{ matrix.goos }}
20+
goarch: ${{ matrix.goarch }}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Parses marker arrays generated from [Sweet markers system](https://steamcommunity.com/sharedfiles/filedetails/?id=324952672) and generates a trp array for use with [Tuntematon Firesupport](https://github.com/tuntematonjr/Tun-Firesupport).
44

5-
Executable files will be found under releases.
5+
Executable files can be found under releases.
66

77
To build from source, simply clone the repo, run `go get`, followed by `go build`.
88

0 commit comments

Comments
 (0)