Skip to content

Setup GitHub Actions #4

Setup GitHub Actions

Setup GitHub Actions #4

Workflow file for this run

name: build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: run dev container
uses: devcontainers/[email protected]
with:
runCmd: >
cd DotNet &&
dotnet publish &&
cd .. &&
cd Native &&
./gradlew assembleRelease