aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2025-05-01 18:18:45 +0000
committersaturneric <[email protected]>2025-05-01 18:18:45 +0000
commitf4a4650cb3aa75e711ac777902df6e8088f06bc6 (patch)
tree8a9a61da797ec2cd6e90848073628d33b39b2dad
parentfix: portable app builds on windows (diff)
downloadGpgFrontend-f4a4650cb3aa75e711ac777902df6e8088f06bc6.tar.gz
GpgFrontend-f4a4650cb3aa75e711ac777902df6e8088f06bc6.zip
fix: specifies repository for nightly release deletion
Ensures the nightly release deletion targets the correct repository. This prevents accidental deletion of releases from other repositories when using the `gh release delete` command.
Diffstat (limited to '')
-rw-r--r--.github/workflows/testing-nightly.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/testing-nightly.yml b/.github/workflows/testing-nightly.yml
index 491e4fe5..6d4eac6a 100644
--- a/.github/workflows/testing-nightly.yml
+++ b/.github/workflows/testing-nightly.yml
@@ -365,7 +365,7 @@ jobs:
run: echo "title=Nightly Build $(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
- name: Delete Old Nightly Release
- run: gh release delete --cleanup-tag --yes nightly
+ run: gh release delete --repo saturneric/GpgFrontend --cleanup-tag --yes nightly
env:
GH_TOKEN: ${{ secrets.USER_GITHUB_TOKEN }}