diff --git a/.github/workflows/build-pipeline.yml b/.github/workflows/build-pipeline.yml index 77e57002..5526a325 100644 --- a/.github/workflows/build-pipeline.yml +++ b/.github/workflows/build-pipeline.yml @@ -76,3 +76,14 @@ jobs: push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} + + deploy: + needs: + - backend-build-and-push-image + - frontend-build-and-push-image + runs-on: ubuntu-latest + steps: + - name: "☁️ deploy" + run: gh workflow run ligfinder --repo github.com/digitalcityscience/continuous-deployment + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file