-
Notifications
You must be signed in to change notification settings - Fork 9
107 lines (86 loc) · 2.79 KB
/
bskycli.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
name: bskycli
on:
push:
branches: [ "main", release-*, develop ]
pull_request:
branches: [ "main", release-*, develop ]
workflow_dispatch:
jobs:
Linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.x
- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: '6.0.5'
- name: Run make linux-x64
run: make bskycli_linux
- name: Determine Version
id: gitversion
uses: gittools/actions/gitversion/[email protected]
- name: Upload package x64
uses: actions/upload-artifact@v4
with:
name: bskycli-linux-x64-${{ steps.gitversion.outputs.FullSemVer }}
path: artifacts/linux-x64
MacOS:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.x
- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: '6.0.5'
- name: Run make osx
run: make bskycli_macos
- name: Determine Version
id: gitversion
uses: gittools/actions/gitversion/[email protected]
- name: Upload package arm64
uses: actions/upload-artifact@v4
with:
name: bskycli-osx-arm64-${{ steps.gitversion.outputs.FullSemVer }}
path: artifacts/osx-arm64
- name: Upload package x64
uses: actions/upload-artifact@v4
with:
name: bskycli-osx-x64-${{ steps.gitversion.outputs.FullSemVer }}
path: artifacts/osx-x64
Windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.x
- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: '6.0.5'
- name: Run powershell script
run: |
.\bskycli_publish.ps1
- name: Determine Version
id: gitversion
uses: gittools/actions/gitversion/[email protected]
- name: Upload package x64
uses: actions/upload-artifact@v4
with:
name: bskycli-win-x64-${{ steps.gitversion.outputs.FullSemVer }}
path: artifacts/win-x64