From a5c2d573876b8e0e1db6dc24e5f2bca3100d2403 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=91=B7=E2=80=8D=E2=99=82=EF=B8=8F=20feat:?= =?UTF-8?q?=20add=20docker-push.yaml=20placeholder=20workflow=20for=20test?= =?UTF-8?q?ing?= 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!"