-
Notifications
You must be signed in to change notification settings - Fork 10
93 lines (78 loc) · 2.04 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
name: Release
on:
push:
tags:
- "*"
jobs:
build_linux:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
go-version:
- 1.20.6
steps:
- uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go-version}}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build
- name: (only on release) Upload artifacts ${{ matrix.os }}
uses: actions/upload-artifact@master
with:
name: ${{ matrix.os }}
path: gqlmerge
if-no-files-found: error
build_macos:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-latest]
go-version:
- 1.20.6
steps:
- uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go-version}}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build
- name: (only on release) Upload artifacts ${{ matrix.os }}
uses: actions/upload-artifact@master
with:
name: ${{ matrix.os }}
path: gqlmerge
if-no-files-found: error
release:
needs: [build_linux, build_macos]
name: Release
runs-on: ubuntu-20.04
steps:
- name: Download linux artifacts
if: success()
uses: actions/download-artifact@master
with:
name: ubuntu-20.04
path: binaries/linux
- name: Download macOS artifacts
if: success()
uses: actions/download-artifact@master
with:
name: macOS-latest
path: binaries/darwin
- name: Move artifacts
if: success()
run: |
mv binaries/linux/gqlmerge gqlmerge-linux
mv binaries/darwin/gqlmerge gqlmerge-macos
- name: Release
uses: ncipollo/release-action@v1
with:
artifacts: |
gqlmerge-linux
gqlmerge-macos