Skip to content

Commit 8ce54f9

Browse files
committed
merge strategies for release
1 parent 85d103f commit 8ce54f9

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/release.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@ jobs:
1313
build:
1414
name: Build
1515
runs-on: ubuntu-latest
16-
strategy:
17-
matrix:
18-
project:
19-
- Common.Build
20-
- Common.Build.Generator
2116
steps:
2217
- name: Checkout
2318
uses: actions/checkout@v6
@@ -26,7 +21,9 @@ jobs:
2621
with:
2722
dotnet-version: ${{ env.DOTNET_VERSION }}
2823
- name: Build
29-
run: bash build.sh --target Archive --general-project ${{ matrix.project }} --general-version $GITHUB_REF_NAME
24+
run: |
25+
bash build.sh --target Archive --general-project Common.Build --general-version $GITHUB_REF_NAME
26+
bash build.sh --target Archive --general-project Common.Build.Generator --general-version $GITHUB_REF_NAME
3027
- name: Release
3128
uses: softprops/action-gh-release@v2
3229
with:

0 commit comments

Comments
 (0)