-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (64 loc) · 1.91 KB
/
build.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
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
outputs:
next: ${{ steps.get-version.outputs.next }}
bump: ${{ steps.get-version.outputs.bump }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get Next version
id: get-version
uses: ietf-tools/[email protected]
with:
token: ${{ github.token }}
branch: ${{ github.ref }}
noVersionBumpBehavior: 'current'
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.18
- name: Make build folder
run: mkdir build
- name: Update version in main.go
shell: bash
run: |
new_version=${{ steps.get-version.outputs.nextStrict }}
sed -i "s/const version = \"[0-9]*\.[0-9]*\.[0-9]*\"/const version = \"$new_version\"/g" ${{ github.workspace }}/main.go
- name: Build for Windows (amd64)
run: |
env GOOS=windows GOARCH=amd64 go build -o /home/runner/work/wowtools/wowtools/build/wowtools.exe
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: WoWTools-AMD64
path: |
build/wowtools.exe
release:
runs-on: ubuntu-latest
needs: build
if: ${{ needs.build.outputs.bump != '' && github.ref == 'refs/heads/main' }}
steps:
- name: Download Windows Artifacts
uses: actions/download-artifact@v2
with:
name: WoWTools-AMD64
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: debug
run: ls -la
- name: Create Release
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: >
gh release create ${{ needs.build.outputs.next }}
wowtools.exe
--title ${{ needs.build.outputs.next }}
--generate-notes --notes-start-tag
${{ needs.build.outputs.next }}