Skip to content

Build

Build #1

Workflow file for this run

name: "Build"
on:
workflow_dispatch:
workflow_call:
jobs:
dotnet-job:

Check failure on line 9 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 9, Col: 3): The workflow must contain at least one job with no dependencies.
name: "Build .NET solution"
needs: [native-job]
runs-on: ubuntu-latest
steps:
- name: "Clone Git repository"
uses: actions/checkout@v3
- name: ".NET Build"
run: dotnet build "./src/cs" --nologo --verbosity minimal --configuration Release -p:Version="$(date +'%Y.%m.%d')"