-
Notifications
You must be signed in to change notification settings - Fork 0
117 lines (92 loc) · 2.74 KB
/
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
name: Publish Tag Release
on:
push:
tags:
- '*.*.*'
jobs:
build:
runs-on: ${{ matrix.os }}
name: Create Release for ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Create Build dir
run: mkdir build
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Update Version
run: |
rm version.go
echo 'package main' >> version.go
echo 'const version = "${{ github.ref_name }}"' >> version.go
cat version.go
working-directory: jem
- name: Build jem
run: go build -o ../build/. -v ./...
working-directory: jem
- name: Test jem
run: go test -v ./...
working-directory: jem
- name: Build jem-install
run: go build -o ../build/. -v ./...
working-directory: jem-install
- name: Test jem-install
run: go test -v ./...
working-directory: jem-install
- name: Build jem-uninstall
run: go build -o ../build/. -v ./...
working-directory: jem-uninstall
- name: Test jem-uninstall
run: go test -v ./...
working-directory: jem-uninstall
- name: Copy important files
run: |
cp ./LICENSE ./build/LICENSE
cp ./README.md ./build/README.md
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: jem-${{ matrix.os }}
path: ./build
retention-days: 5
publish:
runs-on: ubuntu-latest
name: Publish Release
needs: build
steps:
- uses: actions/download-artifact@v3
with:
name: jem-ubuntu-latest
path: build/ubuntu
- uses: vimtor/action-zip@v1
with:
files: build/ubuntu
dest: build/jem-ubuntu-latest.zip
- uses: actions/download-artifact@v3
with:
name: jem-windows-latest
path: build/windows
- uses: vimtor/action-zip@v1
with:
files: build/windows
dest: build/jem-windows-latest.zip
- uses: actions/download-artifact@v3
with:
name: jem-macos-latest
path: build/macos
- uses: vimtor/action-zip@v1
with:
files: build/macos
dest: build/jem-macos-latest.zip
- name: Print tag
run: echo "Tag name:${{ github.ref }}"
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
title: "${{ github.ref_name }}"
prerelease: false
files: build/jem-*.zip