diff --git a/.github/workflows/docker_dev.yml b/.github/workflows/docker_dev.yml index 46c00e799..cb332d82b 100644 --- a/.github/workflows/docker_dev.yml +++ b/.github/workflows/docker_dev.yml @@ -16,7 +16,7 @@ on: workflow_dispatch: inputs: tags: - requierd: true + required: true description: 'Tags to deploy to' env: @@ -119,7 +119,6 @@ jobs: uses: docker/setup-buildx-action@v2 - name: Login to GHCR - if: github.event_name != 'pull_request' uses: docker/login-action@v2 with: registry: ghcr.io @@ -131,6 +130,6 @@ jobs: with: platforms: linux/amd64,linux/arm64,linux/arm/v7 context: . - push: ${{ github.event_name != 'pull_request' }} + push: ${{ github.event_name }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}