From 14c79eca7d1cea4861a0be01cc3a336257a60432 Mon Sep 17 00:00:00 2001 From: nikneem Date: Wed, 25 Feb 2026 10:18:18 +0100 Subject: [PATCH] Removes automatic GitHub release creation Disables the step in the CI/CD workflow that was responsible for creating GitHub releases. This also removes the unnecessary checkout action previously required for release creation. --- .github/workflows/main.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 579ec29..f10ecee 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -73,16 +73,6 @@ jobs: name: Deploy NuGet Package if: ${{ github.ref == 'refs/heads/main' }} steps: - - name: Checkout - uses: actions/checkout@v6 - with: - fetch-depth: 0 - - # - run: gh auth login --with-token ${{ secrets.GITHUB_TOKEN }} - - run: gh release create v${{ needs.version.outputs.mmp }} --generate-notes - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Download Artifact uses: actions/download-artifact@v7 with: