Skip to content

Update stream_videos.sh #19

Update stream_videos.sh

Update stream_videos.sh #19

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
env:
DOCKER_PLATFORMS: linux/amd64,linux/arm64
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: setup docker buildx
uses: docker/setup-buildx-action@v3
id: buildx
with:
install: true
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.PAT_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
sbom: true
provenance: mode=max
outputs: type=registry
platforms: |
linux/amd64
linux/arm64
file: Dockerfile
tags: ${{ secrets.DOCKER_USERNAME }}/docker-ffmpeg-mp4-folder:latest, ghcr.io/${{ secrets.DOCKER_USERNAME }}/docker-ffmpeg-mp4-folder:latest
github-token: ${{ secrets.PAT_TOKEN }}