remove to prepare for subtree

Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
This commit is contained in:
Denis Bykhov
2025-11-26 22:56:11 +05:00
parent 1ab6638012
commit 6ea92dd409
1351 changed files with 0 additions and 228527 deletions
-44
View File
@@ -1,44 +0,0 @@
---
name: Docker push
on:
workflow_dispatch:
inputs:
version:
description: 'Version tag for the image'
required: false
default: 'latest'
type: string
jobs:
push:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Set up Docker Buildx"
uses: docker/setup-buildx-action@v1
- name: "Login to GitHub Container Registry"
uses: docker/login-action@v1
with:
username: hardcoreeng
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
- name: Docker meta
id: metaci
uses: docker/metadata-action@v3
with:
images: hardcoreeng/stream:${{ inputs.version }}
tags: |
type=ref,event=pr
type=sha,prefix=
- name: "Build and push"
uses: docker/build-push-action@v2
with:
file: Dockerfile
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: hardcoreeng/service_stream:${{ inputs.version }}