Skip to content

TwitCasting Recording ApplicationのREADMEを追加し、アプリケーションの概要とフローを説明 #2

TwitCasting Recording ApplicationのREADMEを追加し、アプリケーションの概要とフローを説明

TwitCasting Recording ApplicationのREADMEを追加し、アプリケーションの概要とフローを説明 #2

---
name: rec-twitcasting batch docker push
on:
push:
branches:
- develop
paths:
- 'batch/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: create meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.actor }}/batch-rec-twitcasting
tags: |
type=raw,value=latest
type=sha,prefix=,suffix=,format=short
- name: Build container image
uses: docker/build-push-action@v5
with:
file: ./batch/Dockerfile
push: false
platforms: linux/amd64,linux/arm64