-
Notifications
You must be signed in to change notification settings - Fork 12
156 lines (141 loc) · 5.25 KB
/
release_stable_cli.yaml
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
name: Release_CLI_Stable
on:
push:
tags:
- "*.*.*"
- "!*.*.*-beta*"
- "!*.*.*-rc*"
jobs:
publish_cli:
name: Build and upload cli artifact
runs-on: ubuntu-latest
strategy:
matrix:
targets:
[
"linux-x64",
"linux-musl-x64",
"linux-arm",
"linux-arm64",
"osx-x64",
"osx-arm64",
"win-x86",
"win-x64",
"win-arm64"
]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET SDK 8.0.x
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Publish .NET app
env:
RID: ${{ matrix.targets }}
VERSION: ${{ github.ref_name }}
run: dotnet publish src/RDBCli/RDBCli.csproj -f net8.0 -c Release -r $RID -p:PublishSingleFile=true -p:PublishTrimmed=true -p:DebugType=None -p:DebugSymbols=false -p:EnableCompressionInSingleFile=true --self-contained true --output /home/runner/work/clis/$RID
- name: Package assets
env:
RID: ${{ matrix.targets }}
VERSION: ${{ github.ref_name }}
run: |
mkdir /home/runner/work/release
ls /home/runner/work/clis/
zip -j /home/runner/work/release/rdb-cli.$VERSION.$RID.zip /home/runner/work/clis/$RID/*
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: rdb-cli
path: /home/runner/work/release/
publish_cli_os_low_dependency:
name: Build and upload cli artifact 70
runs-on: ubuntu-latest
strategy:
matrix:
targets:
[
"linux-x64",
"osx-x64",
"win-x64"
]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET SDK 7.0.x
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
- name: Publish .NET app 70
env:
RID: ${{ matrix.targets }}
VERSION: ${{ github.ref_name }}
run: dotnet publish src/RDBCli/RDBCli.csproj -f net7.0 -c Release -r $RID -p:PublishSingleFile=true -p:PublishTrimmed=true -p:DebugType=None -p:DebugSymbols=false -p:EnableCompressionInSingleFile=true --self-contained true --output /home/runner/work/clis/$RID
- name: Package assets 70
env:
RID: ${{ matrix.targets }}
VERSION: ${{ github.ref_name }}
run: |
mkdir /home/runner/work/release
ls /home/runner/work/clis/
zip -j /home/runner/work/release/rdb-cli.${{env.VERSION}}.${{env.RID}}_70.zip /home/runner/work/clis/${{env.RID}}/*
- name: Upload artifacts 70
uses: actions/upload-artifact@v3
with:
name: rdb-cli
path: /home/runner/work/release/
# publish_windows_x64_and_arm_aot:
# name: Build and upload windows x64 and arm64 aot cli artifact
# runs-on: windows-latest
# strategy:
# matrix:
# targets:
# [
# "win-x64",
# "win-arm64"
# ]
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Setup .NET SDK 8.0.x
# uses: actions/setup-dotnet@v4
# with:
# dotnet-version: 8.0.x
# - name: Publish .NET app
# env:
# RID: ${{ matrix.targets }}
# VERSION: ${{ github.ref_name }}
# run: dotnet publish src/RDBCli/RDBCli.csproj -c Release -r $($env:RID) -p:UseAot=true -p:DebugType=None -p:DebugSymbols=false --self-contained true --output ../publish/$($env:RID)
# - name: Package assets
# env:
# RID: ${{ matrix.targets }}
# VERSION: ${{ github.ref_name }}
# run: |
# mkdir ../release
# rm -fo ../publish/$($env:RID)/*.pdb
# ls ../publish/
# Compress-Archive -Path ../publish/$($env:RID)/* -DestinationPath ../release/rdb-cli.$($env:VERSION).$($env:RID).aot.zip
# - name: Upload artifacts
# uses: actions/upload-artifact@v3
# with:
# name: rdb-cli
# path: D:/a/rdb-tools/release
release_cli:
name: Publish release
# needs: ['publish_cli','publish_windows_x64_and_arm_aot']
needs: ['publish_cli', 'publish_cli_os_low_dependency']
runs-on: ubuntu-latest
steps:
- name: Download build artifacts
uses: actions/download-artifact@v3
with:
name: rdb-cli
path: rdb-cli
- name: list rdb-cli
run: ls rdb-cli
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: rdb-cli/**
generate_release_notes: true