Skip to content

Commit

Permalink
Merge pull request #435 from Saibamen/fix_gh_actions
Browse files Browse the repository at this point in the history
Use ubuntu-22.04 for Actions with nuget pack command
  • Loading branch information
Saibamen authored Oct 16, 2024
2 parents 4b4e050 + d6634e9 commit 35621d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ env:
jobs:
build-and-publish-nuget:
if: github.repository_owner == 'gandalan'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04 # ubuntu-latest has issue with nuget pack command (nuget: 2: mono: not found)

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-NuGet-Libs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ env:

jobs:
check-nuget-libs:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04 # ubuntu-latest has issue with nuget pack command (nuget: 2: mono: not found)

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 35621d8

Please sign in to comment.