From 1c6353058044f078429d4e180af09a65fc7ab369 Mon Sep 17 00:00:00 2001 From: Gabriel Radureau Date: Thu, 9 Apr 2026 09:54:43 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20feat:=20add=20docker-push.yaml?= =?UTF-8?q?=20placeholder=20workflow=20for=20testing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/docker-push.yaml | 39 +++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .gitea/workflows/docker-push.yaml diff --git a/.gitea/workflows/docker-push.yaml b/.gitea/workflows/docker-push.yaml new file mode 100644 index 0000000..025050a --- /dev/null +++ b/.gitea/workflows/docker-push.yaml @@ -0,0 +1,39 @@ +--- +# dance-lessons-coach Docker Push Workflow - Placeholder +# This workflow will be implemented to handle Docker image building and pushing +# Currently a placeholder to test workflow dispatch functionality + +name: Docker Push + +on: + # Manual trigger only for testing + workflow_dispatch: + inputs: + deps_hash: + description: 'Dependency hash from build-cache job' + required: true + type: string + ref: + description: 'Git reference (branch/tag)' + required: false + type: string + default: '' + +jobs: + placeholder: + name: Docker Push Placeholder + runs-on: ubuntu-latest-ca + + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + ref: ${{ github.event.inputs.ref || github.ref }} + + - name: Show workflow inputs + run: | + echo "🚀 Docker Push Workflow Triggered" + echo "Dependency Hash: ${{ github.event.inputs.deps_hash }}" + echo "Git Reference: ${{ github.event.inputs.ref || github.ref }}" + echo "📝 This is a placeholder - full implementation coming soon!" + echo "✅ Workflow dispatch is working correctly!"