Skip to content

Commit 6714107

Browse files
committed
[Backport 7.x] Fix make assemble to produce zip (#5409) (#5410)
(cherry picked from commit f6cee9c) (cherry picked from commit de2b20b)
1 parent 7c595a6 commit 6714107

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

.ci/make.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ repo=$(realpath "$script_path/../")
1111
# shellcheck disable=SC1090
1212
CMD=$1
1313
TASK=$1
14+
TASK_ARGS=()
1415
VERSION=$2
1516
STACK_VERSION=$VERSION
1617
set -euo pipefail
@@ -41,6 +42,7 @@ case $CMD in
4142
;;
4243
assemble)
4344
TASK=release
45+
TASK_ARGS=("$VERSION" "$output_folder" "skiptests")
4446
;;
4547
codegen)
4648
TASK=codegen

.github/workflows/unified-release.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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+

0 commit comments

Comments
 (0)