There was an error while loading. Please reload this page.
2 parents 3fe442a + 25a432e commit d9b32f4Copy full SHA for d9b32f4
1 file changed
.github/workflows/notify-homebrew.yml
@@ -0,0 +1,18 @@
1
+name: Notify Homebrew tap
2
+on:
3
+ push:
4
+ tags:
5
+ - "create-awesome-python-app@*"
6
+ workflow_dispatch:
7
+ inputs:
8
+ version:
9
+ description: "Package version"
10
+ required: true
11
+jobs:
12
+ notify:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Dispatch to homebrew-tap
16
+ run: |
17
+ echo "Send repository_dispatch to Create-Python-App/homebrew-tap when it exists"
18
+ echo "Secret: HOMEBREW_TAP_TOKEN"
0 commit comments