Skip to content
This repository has been archived by the owner on Oct 12, 2024. It is now read-only.

Commit

Permalink
Actions build with WASM and Linux binary
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanbeattie committed Jul 15, 2024
1 parent 7cb4835 commit 71f1fc5
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/01-build-and-test-rockstar-engine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,20 @@ jobs:
- name: Test Rockstar
run: dotnet test Starship
- name: Publish WASM engine
run: dotnet publish Starship\Rockstar.Wasm\ -o rockstar.wasm -c Release
run: dotnet publish Starship/Rockstar.Wasm -o rockstar_wasm -c Release
- name: Publish Rockstar Linux binary
run: dotnet publish Starship/Rockstar -o rockstar_linux_binary -c Release
- name: Upload WASM engine
uses: actions/upload-artifact@v4
with:
name: rockstar-wasm-engine
name: rockstar_wasm
path: |
rockstar.wasm/wwwroot/_framework
rockstar_wasm/wwwroot/_framework
- name: Upload WASM engine
uses: actions/upload-artifact@v4
with:
name: rockstar_linux_binary
path: |
rockstar_linux_binary

0 comments on commit 71f1fc5

Please sign in to comment.