File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ repo=$(realpath "$script_path/../")
11
11
# shellcheck disable=SC1090
12
12
CMD=$1
13
13
TASK=$1
14
+ TASK_ARGS=()
14
15
VERSION=$2
15
16
STACK_VERSION=$VERSION
16
17
set -euo pipefail
@@ -41,6 +42,7 @@ case $CMD in
41
42
;;
42
43
assemble)
43
44
TASK=release
45
+ TASK_ARGS=(" $VERSION " " $output_folder " " skiptests" )
44
46
;;
45
47
codegen)
46
48
TASK=codegen
Original file line number Diff line number Diff line change
1
+ name : Unified Release
2
+
3
+
4
+ on :
5
+ pull_request :
6
+ paths-ignore :
7
+ - ' README.md'
8
+ - ' .editorconfig'
9
+ push :
10
+ paths-ignore :
11
+ - ' README.md'
12
+ - ' .editorconfig'
13
+ branches :
14
+ - main
15
+ - master
16
+ - ' [0-9]+.[0-9]+'
17
+ - ' [0-9]+.x'
18
+
19
+ jobs :
20
+ assemble :
21
+ name : Assemble
22
+ runs-on : ubuntu-latest
23
+ strategy :
24
+ fail-fast : false
25
+ matrix :
26
+ stack_version : [ '8.0.0-SNAPSHOT']
27
+
28
+ steps :
29
+ - name : Checkout
30
+ uses : actions/checkout@v2
31
+ - uses : actions/setup-dotnet@v1
32
+ with :
33
+ dotnet-version : ' 5.0.100'
34
+
35
+ - run : " ./.ci/make.sh assemble ${{ matrix.stack_version }}"
36
+ name : Assemble ${{ matrix.stack_version }}
37
+
You can’t perform that action at this time.
0 commit comments