Skip to content

Commit d6dc684

Browse files
committed
Removed quotes.
1 parent d3b6f33 commit d6dc684

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

.github/workflows/main.yml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name: main
1010
jobs:
1111

1212
linux:
13-
name: 'Linux (Q8/Q16/Q16-HDRI, x64)'
13+
name: Linux (Q8/Q16/Q16-HDRI, x64)
1414
container:
1515
image: mcr.microsoft.com/dotnet/sdk:8.0
1616
runs-on: ubuntu-24.04
@@ -28,7 +28,7 @@ jobs:
2828
dotnet-version: 8.x
2929

3030
- name: Install Magick.Native
31-
run: 'build/shared/install.Magick.Native.sh "dlemstra" "${{ secrets.GITHUB_TOKEN }}" linux x64'
31+
run: build/shared/install.Magick.Native.sh "dlemstra" "${{ secrets.GITHUB_TOKEN }}" linux x64
3232

3333
- name: Build
3434
run: build/shared/build.Magick.NET.sh x64
@@ -43,7 +43,7 @@ jobs:
4343
run: build/shared/test.Magick.NET.sh x64 OpenMP
4444

4545
linux_musl:
46-
name: 'Linux musl (Q8/Q16/Q16-HDRI, x64)'
46+
name: Linux musl (Q8/Q16/Q16-HDRI, x64)
4747
container:
4848
image: mcr.microsoft.com/dotnet/sdk:8.0-alpine
4949
runs-on: ubuntu-24.04
@@ -61,7 +61,7 @@ jobs:
6161
dotnet-version: 8.x
6262

6363
- name: Install Magick.Native
64-
run: 'build/shared/install.Magick.Native.sh "dlemstra" "${{ secrets.GITHUB_TOKEN }}" linux-musl x64'
64+
run: build/shared/install.Magick.Native.sh "dlemstra" "${{ secrets.GITHUB_TOKEN }}" linux-musl x64
6565

6666
- name: Build
6767
run: build/shared/build.Magick.NET.sh x64
@@ -76,7 +76,7 @@ jobs:
7676
run: build/shared/test.Magick.NET.sh x64 OpenMP
7777

7878
linux_arm64:
79-
name: 'Linux (Q8/Q16/Q16-HDRI, arm64)'
79+
name: Linux (Q8/Q16/Q16-HDRI, arm64)
8080
runs-on: ubuntu-24.04-arm
8181

8282
steps:
@@ -92,7 +92,7 @@ jobs:
9292
dotnet-version: 8.x
9393

9494
- name: Install Magick.Native
95-
run: 'build/shared/install.Magick.Native.sh "dlemstra" "${{ secrets.GITHUB_TOKEN }}" linux arm64'
95+
run: build/shared/install.Magick.Native.sh "dlemstra" "${{ secrets.GITHUB_TOKEN }}" linux arm64
9696

9797
- name: Build
9898
run: build/shared/build.Magick.NET.sh arm64
@@ -107,7 +107,7 @@ jobs:
107107
run: build/shared/test.Magick.NET.sh arm64 OpenMP
108108

109109
macos:
110-
name: 'MacOS (Q8/Q16/Q16-HDRI)'
110+
name: MacOS (Q8/Q16/Q16-HDRI)
111111
runs-on: macos-13
112112

113113
steps:
@@ -123,7 +123,7 @@ jobs:
123123
dotnet-version: 8.x
124124

125125
- name: Install Magick.Native
126-
run: 'build/shared/install.Magick.Native.sh "dlemstra" "${{ secrets.GITHUB_TOKEN }}" macos x64'
126+
run: build/shared/install.Magick.Native.sh "dlemstra" "${{ secrets.GITHUB_TOKEN }}" macos x64
127127

128128
- name: Build
129129
run: build/shared/build.Magick.NET.sh x64
@@ -148,7 +148,7 @@ jobs:
148148
dotnet-version: 8.x
149149

150150
- name: Install Magick.Native
151-
run: 'build/shared/install.Magick.Native.sh "dlemstra" "${{ secrets.GITHUB_TOKEN }}" macos arm64'
151+
run: build/shared/install.Magick.Native.sh "dlemstra" "${{ secrets.GITHUB_TOKEN }}" macos arm64
152152

153153
- name: Build
154154
run: build/shared/build.Magick.NET.sh arm64
@@ -157,7 +157,7 @@ jobs:
157157
run: build/shared/test.Magick.NET.sh arm64
158158

159159
windows:
160-
name: 'Windows (${{matrix.quantumName}}, ${{matrix.platformName}})'
160+
name: Windows (${{matrix.quantumName}}, ${{matrix.platformName}})
161161
runs-on: windows-2022
162162

163163
permissions:
@@ -196,31 +196,31 @@ jobs:
196196
working-directory: build/windows
197197

198198
- name: Create nuget.config
199-
run: './create-nuget-config.cmd "dlemstra" "${{ secrets.GITHUB_TOKEN }}"'
199+
run: ./create-nuget-config.cmd "dlemstra" "${{ secrets.GITHUB_TOKEN }}"
200200
working-directory: src/Magick.Native
201201

202202
- name: Install Magick.Native
203203
run: ./install.cmd
204204
working-directory: src/Magick.Native
205205

206206
- name: Build Magick.NET (Test)
207-
run: './build.Magick.NET.cmd ${{ matrix.quantumName }} "${{ matrix.platformName }}" Test'
207+
run: ./build.Magick.NET.cmd ${{ matrix.quantumName }} "${{ matrix.platformName }}" Test
208208
working-directory: build/windows
209209

210210
- name: Test Magick.NET
211-
run: './test.Magick.NET.cmd ${{ matrix.quantumName }} "${{ matrix.platformName }}"'
211+
run: ./test.Magick.NET.cmd ${{ matrix.quantumName }} "${{ matrix.platformName }}"
212212
working-directory: build/windows
213213

214214
- name: Build Magick.NET (Release)
215-
run: './build.Magick.NET.cmd ${{ matrix.quantumName }} "${{ matrix.platformName }}" Release'
215+
run: ./build.Magick.NET.cmd ${{ matrix.quantumName }} "${{ matrix.platformName }}" Release
216216
working-directory: build/windows
217217

218218
- name: Set NuGet version
219219
run: ./set.version.ps1
220220
working-directory: publish
221221

222222
- name: Create NuGet package
223-
run: './publish.cmd ${{ matrix.quantumName }} "${{ matrix.platformName }}"'
223+
run: ./publish.cmd ${{ matrix.quantumName }} "${{ matrix.platformName }}"
224224
working-directory: publish
225225

226226
- name: Azure CLI login with federated credential
@@ -244,11 +244,11 @@ jobs:
244244
- name: Upload library
245245
uses: actions/upload-artifact@v4
246246
with:
247-
name: 'Magick.NET-${{ matrix.quantumName }}-${{ matrix.platformName }}'
247+
name: Magick.NET-${{ matrix.quantumName }}-${{ matrix.platformName }}
248248
path: publish/output
249249

250250
windows_arm64:
251-
name: 'Windows (${{matrix.quantumName}}, ${{matrix.platformName}})'
251+
name: Windows (${{matrix.quantumName}}, ${{matrix.platformName}})
252252
#runs-on: windows-11-arm
253253
runs-on: windows-2022
254254

@@ -275,31 +275,31 @@ jobs:
275275
working-directory: build/windows
276276

277277
- name: Create nuget.config
278-
run: './create-nuget-config.cmd "dlemstra" "${{ secrets.GITHUB_TOKEN }}"'
278+
run: ./create-nuget-config.cmd "dlemstra" "${{ secrets.GITHUB_TOKEN }}"
279279
working-directory: src/Magick.Native
280280

281281
- name: Install Magick.Native
282282
run: ./install.cmd
283283
working-directory: src/Magick.Native
284284

285285
# - name: Build Magick.NET (Test)
286-
# run: './build.Magick.NET.cmd ${{ matrix.quantumName }} "${{ matrix.platformName }}" Test'
286+
# run: ./build.Magick.NET.cmd ${{ matrix.quantumName }} "${{ matrix.platformName }}" Test
287287
# working-directory: build/windows
288288

289289
# - name: Test Magick.NET
290-
# run: './test.Magick.NET.cmd ${{ matrix.quantumName }} "${{ matrix.platformName }}"'
290+
# run: ./test.Magick.NET.cmd ${{ matrix.quantumName }} "${{ matrix.platformName }}"
291291
# working-directory: build/windows
292292

293293
- name: Build Magick.NET (Release)
294-
run: './build.Magick.NET.cmd ${{ matrix.quantumName }} "${{ matrix.platformName }}" Release'
294+
run: ./build.Magick.NET.cmd ${{ matrix.quantumName }} "${{ matrix.platformName }}" Release
295295
working-directory: build/windows
296296

297297
- name: Set NuGet version
298298
run: ./set.version.ps1
299299
working-directory: publish
300300

301301
- name: Create NuGet package
302-
run: './publish.cmd ${{ matrix.quantumName }} "${{ matrix.platformName }}"'
302+
run: ./publish.cmd ${{ matrix.quantumName }} "${{ matrix.platformName }}"
303303
working-directory: publish
304304

305305
- name: Azure CLI login with federated credential
@@ -324,7 +324,7 @@ jobs:
324324
- name: Upload library
325325
uses: actions/upload-artifact@v4
326326
with:
327-
name: 'Magick.NET-${{ matrix.quantumName }}-${{ matrix.platformName }}'
327+
name: Magick.NET-${{ matrix.quantumName }}-${{ matrix.platformName }}
328328
path: publish/output
329329

330330
libraries:
@@ -353,23 +353,23 @@ jobs:
353353
working-directory: build/windows
354354

355355
- name: Create nuget.config
356-
run: './create-nuget-config.cmd "dlemstra" "${{ secrets.GITHUB_TOKEN }}"'
356+
run: ./create-nuget-config.cmd "dlemstra" "${{ secrets.GITHUB_TOKEN }}"
357357
working-directory: src/Magick.Native
358358

359359
- name: Install Magick.Native
360360
run: ./install.cmd
361361
working-directory: src/Magick.Native
362362

363-
- name: 'Build Magick.NET.${{ matrix.libraryName }} (Release)'
364-
run: './build.Magick.NET.cmd "Q8" "Any CPU" Release'
363+
- name: Build Magick.NET.${{ matrix.libraryName }} (Release)
364+
run: ./build.Magick.NET.cmd "Q8" "Any CPU" Release
365365
working-directory: build/windows
366366

367367
- name: Set NuGet version
368368
run: ./set.version.ps1
369369
working-directory: publish
370370

371371
- name: Create NuGet package
372-
run: './publish.library.cmd "Magick.NET.${{ matrix.libraryName }}"'
372+
run: ./publish.library.cmd "Magick.NET.${{ matrix.libraryName }}"
373373
working-directory: publish
374374

375375
- name: Azure CLI login with federated credential
@@ -394,5 +394,5 @@ jobs:
394394
- name: Upload library
395395
uses: actions/upload-artifact@v4
396396
with:
397-
name: 'Magick.NET.${{ matrix.libraryName }}'
397+
name: Magick.NET.${{ matrix.libraryName }}
398398
path: publish/output

0 commit comments

Comments
 (0)