Skip to content

Commit d0c44b0

Browse files
committed
Fixing CI pipes
1 parent 1199365 commit d0c44b0

File tree

4 files changed

+27
-14
lines changed

4 files changed

+27
-14
lines changed

.github/workflows/ci-test-reporting.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: phoenix-actions/test-reporting@v15
1919
id: test-report
2020
with:
21-
name: ".NET Test report"
22-
path: "*.trx"
21+
name: ".NET Test report $1"
22+
path: "**/*.trx"
2323
reporter: dotnet-trx
24-
artifact: test-results
24+
artifact: /test-results-(.*)/

.github/workflows/dotnet-ci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ jobs:
1212
build:
1313
strategy:
1414
matrix:
15-
os: [windows-latest, ubuntu-latest, macos-latest]
15+
os: [
16+
windows-latest
17+
, ubuntu-latest
18+
#, macos-latest
19+
]
20+
fail-fast: false
1621
runs-on: "${{ matrix.os }}"
1722
env:
1823
DOTNET_CONFIGURATION: Release
@@ -91,7 +96,7 @@ jobs:
9196
uses: actions/upload-artifact@v4
9297
if: always()
9398
with:
94-
name: test-results
99+
name: test-results-${{ matrix.os }}
95100
path: |
96101
${{ github.workspace }}/test-results/**
97102
@@ -107,5 +112,4 @@ jobs:
107112
name: nuget-packages
108113

109114
- name: Publish to GitHub packages
110-
run: dotnet nuget push ./*.nupkg --source "https://nuget.pkg.github.com/communitytoolkit/index.json" --api-key ${{ secrets.GITHUB_TOKEN }}
111-
115+
run: dotnet nuget push ./*.nupkg --source "https://nuget.pkg.github.com/communitytoolkit/index.json" --api-key ${{ secrets.GITHUB_TOKEN }}

.github/workflows/dotnet-main.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ jobs:
1212
build:
1313
strategy:
1414
matrix:
15-
os: [windows-latest, ubuntu-latest, macos-latest]
15+
os: [
16+
windows-latest
17+
, ubuntu-latest
18+
#, macos-latest
19+
]
20+
fail-fast: false
1621
runs-on: "${{ matrix.os }}"
1722
env:
1823
DOTNET_CONFIGURATION: Release
@@ -90,7 +95,7 @@ jobs:
9095
uses: actions/upload-artifact@v4
9196
if: always()
9297
with:
93-
name: test-results
98+
name: test-results-${{ matrix.os }}
9499
path: |
95100
${{ github.workspace }}/test-results/**
96101
@@ -142,5 +147,4 @@ jobs:
142147
name: nuget-packages
143148

144149
- name: Publish to GitHub packages
145-
run: dotnet nuget push ./*.nupkg --source "https://nuget.pkg.github.com/communitytoolkit/index.json" --api-key ${{ secrets.GITHUB_TOKEN }}
146-
150+
run: dotnet nuget push ./*.nupkg --source "https://nuget.pkg.github.com/communitytoolkit/index.json" --api-key ${{ secrets.GITHUB_TOKEN }}

.github/workflows/dotnet-release.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@ jobs:
1313
build:
1414
strategy:
1515
matrix:
16-
os: [windows-latest, ubuntu-latest, macos-latest]
16+
os: [
17+
windows-latest
18+
, ubuntu-latest
19+
#, macos-latest
20+
]
21+
fail-fast: false
1722
runs-on: "${{ matrix.os }}"
1823
env:
1924
DOTNET_CONFIGURATION: Release
@@ -90,7 +95,7 @@ jobs:
9095
uses: actions/upload-artifact@v4
9196
if: always()
9297
with:
93-
name: test-results
98+
name: test-results-${{ matrix.os }}
9499
path: |
95100
${{ github.workspace }}/test-results/**
96101
@@ -159,4 +164,4 @@ jobs:
159164
name: nuget-packages
160165

161166
- name: Publish to GitHub packages
162-
run: dotnet nuget push ./*.nupkg --source "https://nuget.pkg.github.com/communitytoolkit/index.json" --api-key ${{ secrets.GITHUB_TOKEN }}
167+
run: dotnet nuget push ./*.nupkg --source "https://nuget.pkg.github.com/communitytoolkit/index.json" --api-key ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)