Skip to content

Commit c3062de

Browse files
build: use ubuntu runners
1 parent 3ea506b commit c3062de

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
build-code:
1313
name: Build Code
14-
runs-on: windows-latest
14+
runs-on: ubuntu-latest
1515

1616
steps:
1717
- name: Check out Git repository

.github/workflows/lint-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
lint-code:
1313
name: Lint Code
14-
runs-on: windows-latest
14+
runs-on: ubuntu-latest
1515

1616
steps:
1717
- name: Check out Git repository

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
release:
99
name: Release Project
10-
runs-on: windows-latest
10+
runs-on: ubuntu-latest
1111

1212
steps:
1313
- name: Check out Git repository
@@ -34,7 +34,7 @@ jobs:
3434
run: dotnet pack -c Release -p:Version=${{ github.event.release.tag_name }} -o bin/release
3535

3636
- name: Push Packages
37-
run: dotnet nuget push 'bin\release\*.*' --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
37+
run: dotnet nuget push 'bin/release/*.*' --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
3838

3939
- name: Update release
4040
uses: ncipollo/release-action@v1

.github/workflows/test-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
test-code:
1313
name: Test Code
14-
runs-on: windows-latest
14+
runs-on: ubuntu-latest
1515

1616
steps:
1717
- name: Check out Git repository

0 commit comments

Comments
 (0)