Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
19 changes: 12 additions & 7 deletions .github/actions/install-mono/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ runs:
- name: Cache setup on Windows
if: runner.os == 'Windows'
run: |
mkdir -p .choco-cache
choco config set cacheLocation $(pwd)/.choco-cache
shell: bash
New-Item -ItemType Directory -Path .choco-cache -Force | Out-Null
choco config set cacheLocation "$PWD/.choco-cache"
if ($LASTEXITCODE) { exit $LASTEXITCODE }
shell: pwsh

- name: Cache on Windows
if: runner.os == 'Windows'
Expand Down Expand Up @@ -52,13 +53,17 @@ runs:

- name: Install on Windows (x86)
if: runner.os == 'Windows' && inputs.arch == 'x86'
run: choco install --x86 -y mono
shell: sh
run: |
choco install --x86 -y mono
if ($LASTEXITCODE) { exit $LASTEXITCODE }
shell: pwsh

- name: Install on Windows
if: runner.os == 'Windows' && inputs.arch != 'x86'
run: choco install -y mono
shell: sh
run: |
choco install -y mono
if ($LASTEXITCODE) { exit $LASTEXITCODE }
shell: pwsh

# ===================================
#
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ jobs:
arch: ${{ matrix.os.platform }}

- name: Setup .NET
# use most current version until architecture: support is released
uses: actions/setup-dotnet@main
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0'
architecture: ${{ matrix.os.platform }}
Expand Down Expand Up @@ -144,7 +143,7 @@ jobs:
repository_url: https://test.pypi.org/legacy/

- name: Release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
if: startsWith(github.ref, 'refs/tags/v')
with:
files: dist/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
uses: actions/upload-pages-artifact@v4
uses: actions/upload-pages-artifact@v5

deploy:
if: github.ref == 'refs/heads/main'
Expand All @@ -31,4 +31,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
Loading
Loading