ci: add push workflow trigger

This commit is contained in:
2024-12-01 12:46:35 -07:00
parent db874f997a
commit 40d7ee99c9

View File

@@ -158,7 +158,7 @@ jobs:
- name: "📦 Build and push" - name: "📦 Build and push"
id: task_release_gh_push id: task_release_gh_push
uses: docker/build-push-action@v3 uses: docker/build-push-action@v3
if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' )
with: with:
context: . context: .
file: Dockerfile file: Dockerfile
@@ -267,7 +267,7 @@ jobs:
- name: "📦 Build and push" - name: "📦 Build and push"
id: task_release_dh_push id: task_release_dh_push
uses: docker/build-push-action@v3 uses: docker/build-push-action@v3
if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' )
with: with:
context: . context: .
file: Dockerfile file: Dockerfile