Update docker_dev.yml

This commit is contained in:
Thomas Camlong
2022-06-06 12:22:32 +02:00
committed by GitHub
parent bdaf70f26b
commit 39674fc769

View File

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