This is an automated email from the ASF dual-hosted git repository.

djensen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-dotpulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 0c811eb  Disable web API build and deployment in workflow
0c811eb is described below

commit 0c811eb2578f43d66173b35c99180a5212973299
Author: entvex <[email protected]>
AuthorDate: Wed Sep 25 10:32:24 2024 +0200

    Disable web API build and deployment in workflow
    
    Commented out the web API build and deployment steps in the GitHub Actions 
workflow. This includes actions for checking out the repository, setting up 
.NET, building documentation using DocFX, and deploying to GitHub Pages.
---
 .github/workflows/publish-to-nuget.yml | 52 +++++++++++++++++-----------------
 1 file changed, 26 insertions(+), 26 deletions(-)

diff --git a/.github/workflows/publish-to-nuget.yml 
b/.github/workflows/publish-to-nuget.yml
index 85c4f16..0ef727f 100644
--- a/.github/workflows/publish-to-nuget.yml
+++ b/.github/workflows/publish-to-nuget.yml
@@ -58,29 +58,29 @@ jobs:
         env:
           NUGET_AUTH_TOKEN: ${{ secrets.NUGET_KEY }}
           
-  build-web-api:
-    timeout-minutes: 30
-    needs: build
-    runs-on: ubuntu-latest
-    strategy:
-      fail-fast: false
-    steps:
-      - name: Check Out
-        uses: actions/checkout@v3
-      
-      - name: Setup .NET
-        uses: actions/setup-dotnet@v3
-        with:
-          dotnet-version: '8.0.x'
-
-      - name: Build docs with docfx
-        run: |
-          dotnet tool update -g docfx
-          dotnet build -p:TargetFramework=net8.0
-          docfx docs/api/docfx.json
-
-      - name: Deploy to GitHub Pages
-        uses: peaceiris/actions-gh-pages@v3
-        with:
-          github_token: ${{ secrets.GITHUB_TOKEN }}
-          publish_dir: docs/api/_site
\ No newline at end of file
+#  build-web-api:
+#    timeout-minutes: 30
+#    needs: build
+#    runs-on: ubuntu-latest
+#    strategy:
+#      fail-fast: false
+#    steps:
+#      - name: Check Out
+#        uses: actions/checkout@v3
+#      
+#      - name: Setup .NET
+#        uses: actions/setup-dotnet@v3
+#        with:
+#          dotnet-version: '8.0.x'
+#
+#      - name: Build docs with docfx
+#        run: |
+#          dotnet tool update -g docfx
+#          dotnet build -p:TargetFramework=net8.0
+#          docfx docs/api/docfx.json
+#
+#      - name: Deploy to GitHub Pages
+#        uses: peaceiris/actions-gh-pages@v3
+#        with:
+#          github_token: ${{ secrets.GITHUB_TOKEN }}
+#          publish_dir: docs/api/_site

Reply via email to