diff --git a/.github/workflows/auto-doc.yml b/.github/workflows/auto-doc.yml new file mode 100644 index 0000000..556b95e --- /dev/null +++ b/.github/workflows/auto-doc.yml @@ -0,0 +1,23 @@ +name: Automatic documentation +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + auto-doc: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.x.x + - name: Restore dependencies + run: dotnet restore + - name: Build + run: dotnet build --no-restore -o build + - name: Automatic documentation + run: | + dotnet run --project Warcraft.NET.Docs/Warcraft.NET.Docs.csproj -- ../Docs diff --git a/.gitignore b/.gitignore index 29c559f..ec36b6d 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,7 @@ bld/ [Bb]in/ [Oo]bj/ [Ll]og/ +build/ # Visual Studio 2015/2017 cache/options directory .vs/