Add workflow dispatch for docker builds

This commit is contained in:
Zoe Roux 2024-03-25 02:22:58 +01:00
parent 71f56699c8
commit b44bdb8a75
No known key found for this signature in database

View File

@ -7,6 +7,7 @@ on:
tags: tags:
- v* - v*
pull_request: pull_request:
workflow_dispatch:
jobs: jobs:
build: build:
@ -73,7 +74,7 @@ jobs:
- name: Build and push - name: Build and push
id: docker_build id: docker_build
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5
if: steps.filter.outputs.should_run == 'true' if: steps.filter.outputs.should_run == 'true' || github.event_name == 'workflow_dispatch'
with: with:
context: ${{matrix.context}} context: ${{matrix.context}}
platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64