feat: AI 미디어 허브 초기 세팅 및 뼈대 코드 완성
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 3m7s

This commit is contained in:
AI Assistant
2026-03-12 12:43:17 +09:00
commit 4b8c2c0453
9 changed files with 436 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
name: Build and Push Docker Image
on:
push:
branches:
- main
tags:
- 'v*'
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Log in to Gitea Container Registry
uses: docker/login-action@v2
with:
registry: git.savethenurse.com
username: ${{ github.actor }}
password: ${{ secrets.GITEA_TOKEN }}
- name: Build and push container image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: git.savethenurse.com/savethenurse/ai-media-hub:latest