diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5bcbc56..30a9ccf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,25 +1,25 @@ name: Build - + on: push: branches: [ main ] pull_request: branches: [ main ] - + jobs: build: name: Build Solution runs-on: windows-latest - + steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4 - name: Setup MSBuild uses: microsoft/setup-msbuild@v2 - + - name: Restore NuGet Packages run: msbuild -t:restore src/Bonsai.PulsePal.sln - + - name: Build Solution run: msbuild src/Bonsai.PulsePal.sln /p:Configuration=Release diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 3202f6c..c47f3fc 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -1,29 +1,38 @@ -# Builds and publishes the documentation website to gh-pages branch +# Builds and publishes the documentation website name: Build docs on: workflow_dispatch: +concurrency: + group: docs + cancel-in-progress: true + +permissions: + # Both required by actions/deploy-pages + pages: write + id-token: write + jobs: build: runs-on: windows-latest steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4 with: submodules: true - name: Setup MSBuild uses: microsoft/setup-msbuild@v2 - + - name: Restore NuGet Packages run: msbuild -t:restore src/Bonsai.PulsePal.sln - + - name: Build Solution run: msbuild src/Bonsai.PulsePal.sln /p:Configuration=Release - + - name: Setup .NET Core SDK - uses: actions/setup-dotnet@v4.0.0 + uses: actions/setup-dotnet@v4 with: dotnet-version: 7.x @@ -37,15 +46,11 @@ jobs: - name: Build Documentation working-directory: docs run: .\build.ps1 - - - name: Checkout gh-pages - uses: actions/checkout@v4.1.1 - with: - ref: gh-pages - path: gh-pages - - name: Publish to github pages - uses: peaceiris/actions-gh-pages@v3.9.3 + + - name: Upload GitHub Pages Artifact + uses: actions/upload-pages-artifact@v3 with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: docs/_site - force_orphan: true \ No newline at end of file + path: docs/_site + + - name: Deploy to GitHub Pages + uses: actions/deploy-pages@v4