diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 507d077..04b6db7 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -1,16 +1,21 @@ name: cd on: - workflow_run: - workflows: ["ci"] - types: - - completed - branches: - - 'master' + push: + branches: + - master + + # workflow_run: + # workflows: ["ci"] + # types: + # - completed + # branches: + # - 'master' + jobs: deploy: runs-on: ubuntu-latest - if: ${{ github.event.workflow_run.conclusion == 'success' }} + # if: ${{ github.event.workflow_run.conclusion == 'success' }} steps: - name: Checkout repository