Skip to content

Commit

Permalink
Update action
Browse files Browse the repository at this point in the history
  • Loading branch information
arenekosreal committed Dec 5, 2024
1 parent 06cbb54 commit 2948eb2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
- name: "Fix long path on windows"
if: matrix.os == 'windows-latest'
run: "git config --system core.longpaths true"
- name: "Prepare depends for AoT on Linux"
if: matrix.os == 'ubuntu-latest' && matrix.aot == 'true'
run: |
sudo apt-get update -y
sudo apt-get install -y zlib1g-dev
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Setup .NET"
Expand Down Expand Up @@ -79,5 +84,6 @@ jobs:
body: |
Difference between self-contained and require-runtime:
You have to install asp.net runtime and dotnet runtime if using `require-runtime` version.
Difference between aot and noaot:
See [here](https://learn.microsoft.com/en-us/dotnet/core/deploying/native-aot)

0 comments on commit 2948eb2

Please sign in to comment.