From c3b06cae519c8c1576fba6499b5007e7c843213b Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Thu, 19 Mar 2026 04:00:42 +0000 Subject: [PATCH] remove on: pull_request --- .github/workflows/build_addon.yml | 29 +++++++++++++---------------- 1 file changed, 13 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build_addon.yml b/.github/workflows/build_addon.yml index b25a9b9..8b47ff4 100644 --- a/.github/workflows/build_addon.yml +++ b/.github/workflows/build_addon.yml @@ -5,9 +5,6 @@ on: tags: - 'v*.*.*' - pull_request: - branches: [ main, master ] - workflow_dispatch: jobs: @@ -22,7 +19,7 @@ jobs: uses: pdm-project/setup-pdm@v4 with: python-version: '3.11' - + - name: Install dependencies run: | pdm sync -d -G build @@ -43,17 +40,17 @@ jobs: needs: build steps: - - name: Download releases files - uses: actions/download-artifact@v4.1.7 - with: - name: packaged_addon + - name: Download releases files + uses: actions/download-artifact@v4.1.7 + with: + name: packaged_addon - - name: Display structure of downloaded files - run: tree + - name: Display structure of downloaded files + run: tree - - name: Release - uses: softprops/action-gh-release@v1 - with: - files: ./*.nvda-addon - fail_on_unmatched_files: true - prerelease: ${{ contains(github.ref, '-') }} + - name: Release + uses: softprops/action-gh-release@v1 + with: + files: ./*.nvda-addon + fail_on_unmatched_files: true + prerelease: ${{ contains(github.ref, '-') }}