Skip to content

Commit dbc26dd

Browse files
authored
Fix
1 parent 205150d commit dbc26dd

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [windows-latest, ubuntu-22.04, macos-latest]
13-
framework: ['net462', 'net6.0', 'net8.0']
1413

1514
steps:
1615
# Prerequisites
@@ -45,14 +44,14 @@ jobs:
4544

4645
# Build & package
4746
- name: Build
48-
run: pwsh make.ps1 -frameworks ${{ matrix.framework }}
47+
run: pwsh make.ps1
4948
- name: Package
50-
run: pwsh make.ps1 package -frameworks ${{ matrix.framework }}
49+
run: pwsh make.ps1 package
5150

5251
# Upload package
5352
- uses: actions/upload-artifact@v4
5453
with:
55-
name: packages-${{ matrix.os }}-${{ matrix.framework }}
54+
name: packages-${{ matrix.os }}
5655
path: Package/Release/Packages
5756

5857
test:
@@ -84,7 +83,9 @@ jobs:
8483
with:
8584
dotnet-version: '9.0.x'
8685

87-
# Test action
86+
# Build & Test
87+
- name: Build
88+
run: pwsh make.ps1
8889
- name: Test (${{ matrix.framework }})
8990
run: ./make.ps1 -frameworks ${{ matrix.framework }} test-all
9091
shell: pwsh

0 commit comments

Comments
 (0)