-
Notifications
You must be signed in to change notification settings - Fork 1
62 lines (56 loc) · 1.84 KB
/
build_test_release.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
name: Build Binary & Release
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v3
- uses: actions/checkout@v3
- name: Setup Go Workfile
run: go work init ./ci ./
- run: cd ci && go get dagger.io/dagger@latest && cd ..
- run: mkdir ./dist
- run: go run ci/build_test_release.go
- name: Auto Changelog
uses: ardalanamini/[email protected]
id : changelog
with:
github-token : ${{ secrets.GITHUB_TOKEN }}
commit-types : |
feat: New Features
fix: Bug Fixes
build: Build System & Dependencies
perf: Performance Improvements
docs: Documentation
test: Tests
refactor: Refactors
chore: Chores
ci: CI
cd: CD
style: Code Style
revert: Reverts
- name: publish project
shell: bash
run: |
cp ./src/author.txt ./dist
tag=$(git describe --tags --abbrev=0)
#linux build
release_name_linux="cocommit_go-$tag-linux"
tar -C ./dist -czvf "${release_name_linux}.tar.gz" cocommit_go-linux ./author.txt
#windows build
release_name_win="cocommit_go-$tag-win"
tar -C ./dist -czvf "${release_name_win}.tar.gz" cocommit_go-windows ./author.txt
#mac build
release_name_mac="cocommit_go-$tag-mac"
tar -C ./dist -czvf "${release_name_mac}.tar.gz" cocommit_go-darwin ./author.txt
- name: Release project
uses: softprops/action-gh-release@v1
with:
body: ${{steps.changelog.outputs.changelog}}
files: "*.tar.gz"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}