From cfcfee2642cf3a01f6b685d26349ee45669fd35b Mon Sep 17 00:00:00 2001 From: Miguel Date: Sun, 19 Oct 2025 16:04:57 +0200 Subject: [PATCH] Update beta-build-nightly.yml --- .github/workflows/beta-build-nightly.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/beta-build-nightly.yml b/.github/workflows/beta-build-nightly.yml index c7cb81e..88f6d73 100644 --- a/.github/workflows/beta-build-nightly.yml +++ b/.github/workflows/beta-build-nightly.yml @@ -3,7 +3,8 @@ name: DSPRE Beta Canary Build on: push: branches: - - main # Trigger only on pushes to the main branch + - dev # Trigger only for dev or beta branch + - beta permissions: contents: write @@ -15,7 +16,7 @@ env: jobs: build: - if: github.repository == 'DS-Pokemon-Rom-Editor/DS-Pokemon-Rom-Editor' + if: github.repository == 'DS-Pokemon-Rom-Editor/DSPRE' runs-on: windows-latest steps: @@ -57,7 +58,7 @@ jobs: - name: Delete previous release run: | - gh release delete --yes beta_canary + gh release delete --yes beta_canary || true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}