We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bf2358 commit 9b481afCopy full SHA for 9b481af
.github/workflows/cd-production.yml
@@ -9,7 +9,7 @@ env:
9
10
jobs:
11
pack-and-publish:
12
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04 # NuGet.exe is a Mono application on Linux and is not installed by default on `ubuntu-latest` runners
13
steps:
14
- name: Checkout
15
uses: actions/checkout@v3
.github/workflows/create-release.yml
@@ -58,7 +58,7 @@ jobs:
58
- name: run release-it
59
run: |
60
params=()
61
- # Determine prerelease logic
+
62
if [[ "${{ github.event.inputs.release_type }}" == "stable" ]]; then
63
params+=(--${{ github.event.inputs.version_bump }})
64
elif [[ "${{ github.event.inputs.continue_prerelease }}" == "true" ]]; then
0 commit comments