Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aragas committed May 2, 2024
1 parent 49f1aac commit bcbf9bf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,12 @@ jobs:

- name: Add Dedicated GPU Hint
run: |
echo "Downloading ILAsm";
Invoke-WebRequest https://globalcdn.nuget.org/packages/runtime.linux-x64.microsoft.netcore.ildasm.8.0.0.nupkg -OutFile ildasm.nupkg;
echo "Extracting ILAsm";
Expand-Archive ildasm.nupkg -d tools/ildasm;
chmod +x tools/ilasm/runtimes/linux-x64/native/ilasm
echo "chmod ILAsm";
chmod +x tools/ildasm/runtimes/linux-x64/native/ildasm;
# So what is happening here?
# We're not able to export global variables from C#
Expand Down

0 comments on commit bcbf9bf

Please sign in to comment.