Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/wf-build-release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
jobs:
build:
runs-on: windows-2019
runs-on: windows-latest
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
steps:
Expand All @@ -33,17 +33,17 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Compiled project
path: D:\a\qrcoder\qrcoder
path: ${{ github.workspace }}

test:
needs: build
runs-on: windows-2019
runs-on: windows-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: Compiled project
path: D:\a\qrcoder\qrcoder
path: ${{ github.workspace }}

- name: Install additional .NET SDKs
uses: actions/setup-dotnet@v4
Expand Down Expand Up @@ -139,15 +139,15 @@ jobs:

pack-push-ci:
needs: test
runs-on: windows-2019
runs-on: windows-latest
env:
GH_PKG_SEC: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: Compiled project
path: D:\a\qrcoder\qrcoder
path: ${{ github.workspace }}

- name: Install additional .NET SDKs
uses: actions/setup-dotnet@v4
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
clean:
needs: [build, test, pack-push-ci]
if: always()
runs-on: windows-2019
runs-on: windows-latest
steps:
- name: Delete artifacts
uses: GeekyEggo/delete-artifact@v5
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/wf-build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
required: true
jobs:
build:
runs-on: windows-2019
runs-on: windows-latest
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
steps:
Expand All @@ -34,17 +34,17 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Compiled project
path: D:\a\qrcoder\qrcoder
path: ${{ github.workspace }}

test:
needs: build
runs-on: windows-2019
runs-on: windows-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: Compiled project
path: D:\a\qrcoder\qrcoder
path: ${{ github.workspace }}

- name: Install additional .NET SDKs
uses: actions/setup-dotnet@v4
Expand Down Expand Up @@ -139,15 +139,15 @@ jobs:

pack-push-release:
needs: test
runs-on: windows-2019
runs-on: windows-latest
env:
GH_PKG_SEC: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: Compiled project
path: D:\a\qrcoder\qrcoder
path: ${{ github.workspace }}

- name: Install additional .NET SDKs
uses: actions/setup-dotnet@v4
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
clean:
needs: [build, test, pack-push-release]
if: always()
runs-on: windows-2019
runs-on: windows-latest
steps:
- name: Delete artifacts
uses: GeekyEggo/delete-artifact@v5
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/wf-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
jobs:
build:
runs-on: windows-2019
runs-on: windows-latest
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
steps:
Expand All @@ -33,17 +33,17 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Compiled project
path: D:\a\qrcoder\qrcoder
path: ${{ github.workspace }}

test:
needs: build
runs-on: windows-2019
runs-on: windows-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: Compiled project
path: D:\a\qrcoder\qrcoder
path: ${{ github.workspace }}

- name: Install additional .NET SDKs
uses: actions/setup-dotnet@v4
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
clean:
needs: [build, test]
if: always()
runs-on: windows-2019
runs-on: windows-latest
steps:
- name: Delete artifacts
uses: GeekyEggo/delete-artifact@v5
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/wf-verify-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,17 @@ on:

jobs:
format:
runs-on: windows-2019
runs-on: ubuntu-latest
env:
EnableWindowsTargeting: true
Comment thread
Shane32 marked this conversation as resolved.
steps:
- uses: actions/checkout@v4
name: Checkout Code

- name: Install additional .NET SDKs
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
2.0.x
5.0.x
6.0.x
8.0.x
dotnet-version: 8.0.x

- name: Restore NuGet Packages
run: dotnet restore
Expand Down
Loading