Ver código fonte

Switch to only deploying when pushing to develop/master

Hopefully this still allows the release trigger to work, but this is relying on undocumented behaviour that nobody else appears to have tried.
Kevin Brown 5 anos atrás
pai
commit
7b1367c6a0
1 arquivos alterados com 4 adições e 4 exclusões
  1. 4 4
      .github/workflows/deploy.yml

+ 4 - 4
.github/workflows/deploy.yml

@@ -1,10 +1,10 @@
 name: Package Deployment
 
 on:
-  push: ~
-    # branches:
-    #   - develop
-    #   - master
+  push:
+    branches:
+      - develop
+      - master
   release: ~
 
 jobs: