mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-01-18 10:36:44 +00:00
Include runtime on publish.
Bugfix hello.lua too slow. Bump to version 1.1.0-beta.
This commit is contained in:
parent
fe9446e2e7
commit
3fa0a73ac6
3 changed files with 4 additions and 4 deletions
4
.github/workflows/publish.yml
vendored
4
.github/workflows/publish.yml
vendored
|
@ -33,7 +33,7 @@ jobs:
|
||||||
run: dotnet test --no-build --verbosity normal
|
run: dotnet test --no-build --verbosity normal
|
||||||
|
|
||||||
- name: Publish for Windows x64
|
- name: Publish for Windows x64
|
||||||
run: dotnet publish Capy64/Capy64.csproj -c Release --no-self-contained -a x64 --os win -p:PublishSingleFile=true -o capy64-windows-x64
|
run: dotnet publish Capy64/Capy64.csproj -c Release -a x64 --os win -p:PublishReadyToRun=false -p:PublishSingleFile=true -p:TieredCompilation=false -o capy64-windows-x64 --self-contained
|
||||||
|
|
||||||
- name: Upload Windows x64 artifact
|
- name: Upload Windows x64 artifact
|
||||||
uses: actions/upload-artifact@v3.1.2
|
uses: actions/upload-artifact@v3.1.2
|
||||||
|
@ -64,7 +64,7 @@ jobs:
|
||||||
run: dotnet test --no-build --verbosity normal
|
run: dotnet test --no-build --verbosity normal
|
||||||
|
|
||||||
- name: Publish for Linux x64
|
- name: Publish for Linux x64
|
||||||
run: dotnet publish Capy64/Capy64.csproj -c Release --no-self-contained -a x64 --os linux -p:PublishSingleFile=true -o capy64-linux-x64
|
run: dotnet publish Capy64/Capy64.csproj -c Release -a x64 --os linux -p:PublishReadyToRun=false -p:PublishSingleFile=true -p:TieredCompilation=false -o capy64-linux-x64 --self-contained
|
||||||
|
|
||||||
- name: Upload Linux x64 artifact
|
- name: Upload Linux x64 artifact
|
||||||
uses: actions/upload-artifact@v3.1.2
|
uses: actions/upload-artifact@v3.1.2
|
||||||
|
|
|
@ -14,4 +14,4 @@ end
|
||||||
local color = colors[math.random(1, #colors)]
|
local color = colors[math.random(1, #colors)]
|
||||||
|
|
||||||
term.setForeground(color)
|
term.setForeground(color)
|
||||||
slowPrint("Hello, World!", 50)
|
slowPrint("Hello, World!", 0.05)
|
||||||
|
|
|
@ -43,7 +43,7 @@ public enum EngineMode
|
||||||
|
|
||||||
public class Capy64 : Game, IGame
|
public class Capy64 : Game, IGame
|
||||||
{
|
{
|
||||||
public const string Version = "1.0.0-beta";
|
public const string Version = "1.1.0-beta";
|
||||||
|
|
||||||
public static class DefaultParameters
|
public static class DefaultParameters
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue