We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d103f commit 8ce54f9Copy full SHA for 8ce54f9
1 file changed
.github/workflows/release.yaml
@@ -13,11 +13,6 @@ jobs:
13
build:
14
name: Build
15
runs-on: ubuntu-latest
16
- strategy:
17
- matrix:
18
- project:
19
- - Common.Build
20
- - Common.Build.Generator
21
steps:
22
- name: Checkout
23
uses: actions/checkout@v6
@@ -26,7 +21,9 @@ jobs:
26
with:
27
dotnet-version: ${{ env.DOTNET_VERSION }}
28
- 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
+ bash build.sh --target Archive --general-project Common.Build.Generator --general-version $GITHUB_REF_NAME
30
- name: Release
31
uses: softprops/action-gh-release@v2
32
0 commit comments