Skip to content

Commit 9b481af

Browse files
committed
fix ubuntu version in CD workflow
1 parent 1bf2358 commit 9b481af

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cd-production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99

1010
jobs:
1111
pack-and-publish:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04 # NuGet.exe is a Mono application on Linux and is not installed by default on `ubuntu-latest` runners
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v3

.github/workflows/create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: run release-it
5959
run: |
6060
params=()
61-
# Determine prerelease logic
61+
6262
if [[ "${{ github.event.inputs.release_type }}" == "stable" ]]; then
6363
params+=(--${{ github.event.inputs.version_bump }})
6464
elif [[ "${{ github.event.inputs.continue_prerelease }}" == "true" ]]; then

0 commit comments

Comments
 (0)