From 7c2420dd9a4383f3e67c673310496233c0214d5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ho=C3=A0ng=20Anh=20T=C3=BA?= Date: Tue, 28 Oct 2025 12:46:15 +0700 Subject: [PATCH] feat: Add workflow_dispatch trigger to publish-upm workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enables manual triggering of package publishing workflow from GitHub Actions UI. This allows administrators to manually trigger package publishes without waiting for automatic triggers. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/publish-upm.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish-upm.yml b/.github/workflows/publish-upm.yml index f4b197063..cae0cb48e 100644 --- a/.github/workflows/publish-upm.yml +++ b/.github/workflows/publish-upm.yml @@ -1,6 +1,8 @@ name: Publish to UPM Registry on: + workflow_dispatch: # Manual trigger + push: branches: - master