From 25a432e59564bc1e9115b7c0ca509b4add1bd9e8 Mon Sep 17 00:00:00 2001 From: ulises-jeremias Date: Thu, 16 Jul 2026 03:21:32 -0300 Subject: [PATCH] ci: Homebrew tap notify workflow Closes #61 Co-authored-by: Cursor --- .github/workflows/notify-homebrew.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/notify-homebrew.yml diff --git a/.github/workflows/notify-homebrew.yml b/.github/workflows/notify-homebrew.yml new file mode 100644 index 0000000..fa6dfe8 --- /dev/null +++ b/.github/workflows/notify-homebrew.yml @@ -0,0 +1,18 @@ +name: Notify Homebrew tap +on: + push: + tags: + - "create-awesome-python-app@*" + workflow_dispatch: + inputs: + version: + description: "Package version" + required: true +jobs: + notify: + runs-on: ubuntu-latest + steps: + - name: Dispatch to homebrew-tap + run: | + echo "Send repository_dispatch to Create-Python-App/homebrew-tap when it exists" + echo "Secret: HOMEBREW_TAP_TOKEN"