diff --git a/.github/workflows/build_push.yml b/.github/workflows/build_push.yml index a664a67..3e6f064 100644 --- a/.github/workflows/build_push.yml +++ b/.github/workflows/build_push.yml @@ -127,3 +127,7 @@ jobs: owner: "Suwayomi" repo: "Tachidesk-preview" tag: ${{ steps.GenTagName.outputs.value }} + + - name: Run Docker build workflow + run: | + curl -X POST -H "Accept: application/vnd.github.v3+json" -H "Authorization: token ${{ secrets.DEPLOY_PREVIEW_TOKEN }}" -d '{"ref":"main", "inputs":{"tachidesk_release_type": "preview"}}' https://api.github.com/repos/suwayomi/docker-tachidesk/actions/workflows/build_container_images.yml/dispatches diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 65f0acd..6c6e2ab 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -85,3 +85,8 @@ jobs: tags: true draft: true verbose: true + + - name: Run Docker build workflow + run: | + curl -X POST -H "Accept: application/vnd.github.v3+json" -H "Authorization: token ${{ secrets.DEPLOY_PREVIEW_TOKEN }}" -d '{"ref":"main", "inputs":{"tachidesk_release_type": "stable"}}' https://api.github.com/repos/suwayomi/docker-tachidesk/actions/workflows/build_container_images.yml/dispatches +