Skip to content

Commit

Permalink
Use quote consistently
Browse files Browse the repository at this point in the history
Workflow files had a mixture of the " and ' quotes.
  • Loading branch information
Colin Ward committed May 7, 2024
1 parent a9df624 commit d048ab9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/amiga_os3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
env:
PREFIX: m68k-amigaos-
with:
command: 'make'
command: "make"
- name: Build Debug
uses: hitman-codehq/Amiga-Build-OS3@v1
env:
PREFIX: m68k-amigaos-
with:
command: 'make DEBUG=1'
command: "make DEBUG=1"
- name: Archive Libraries
uses: actions/upload-artifact@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/amiga_os4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
env:
PREFIX: ppc-amigaos-
with:
command: 'make'
command: "make"
- name: Build Debug
uses: hitman-codehq/Amiga-Build-OS4@v1
env:
PREFIX: ppc-amigaos-
with:
command: 'make DEBUG=1'
command: "make DEBUG=1"
- name: Archive Libraries
uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Upload Artifacts
uses: actions/upload-pages-artifact@v1
with:
path: 'html'
path: "html"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.1
with:
vs-version: '16.0'
vs-version: "16.0"
- name: Build
run: |
msbuild /p:Configuration=Release /p:Platform=x86
Expand Down

0 comments on commit d048ab9

Please sign in to comment.