Skip to content

Commit 78475a4

Browse files
committed
Fix a variable usage
1 parent 4f91291 commit 78475a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish-multitarget.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
dotnet-version: [8.0.x, 10.0.x]
11+
dotnet-version: [8.0, 10.0]
1212
steps:
1313
- name: Checkout repository
1414
uses: actions/checkout@v4
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: Publish ACMEServer.ADCS
2828
run: |
29-
dotnet publish src/ACMEServer.ADCS/ACMEServer.ADCS.csproj --configuration Release --framework net${{ matrix.dotnet-version%%.* }}.0 --output "artifacts/${{ matrix.dotnet-version }}/ACMEServer.ADCS"
29+
dotnet publish src/ACMEServer.ADCS/ACMEServer.ADCS.csproj --configuration Release --framework net${{ matrix.dotnet-version }} --output "artifacts/${{ matrix.dotnet-version }}/ACMEServer.ADCS"
3030
3131
- name: Upload published artifacts
3232
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)