Run deploy workflow on every push to master

This commit is contained in:
Michael Bull 2024-03-02 19:49:01 +00:00
parent a73b69a54a
commit 350ef94e5d
1 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,8 @@
name: Deploy name: Deploy
on: workflow_dispatch on:
push:
branches: [ "master" ]
permissions: permissions:
contents: read contents: read
@ -11,6 +13,7 @@ jobs:
deploy: deploy:
needs: build needs: build
if: needs.build.result == 'success'
strategy: strategy:
matrix: matrix: