Skip to content

Commit

Permalink
Fix building (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
csukuangfj authored Jul 31, 2024
1 parent c4ff565 commit 9b5c409
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions .github/workflows/dot-net.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
os: [macos-latest]

steps:
- uses: actions/checkout@v2

- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
# - name: Setup .NET Core 3.1
# uses: actions/setup-dotnet@v1
# with:
# dotnet-version: 3.1.x

- name: Setup .NET 7.0
uses: actions/setup-dotnet@v1
Expand All @@ -38,10 +38,23 @@ jobs:
- name: Check dotnet
run: dotnet --info

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.8"

- name: Install Python dependencies
shell: bash
run: |
python3 -m pip install --upgrade pip jinja2
- name: build nuget packages
shell: bash
run: |
cd scripts/
# dotnet workload install wasm-tools-net7
dotnet workload install ios
./run.sh
ls -lh packages
Expand Down

0 comments on commit 9b5c409

Please sign in to comment.