Skip to content

Merge branch 'main' of https://github.com/r0achnnan9p/ffmpeg_hevc_ove… #7

Merge branch 'main' of https://github.com/r0achnnan9p/ffmpeg_hevc_ove…

Merge branch 'main' of https://github.com/r0achnnan9p/ffmpeg_hevc_ove… #7

Workflow file for this run

name: ffmpeg_hevc_over_rtmp
on:
push:
branches:
- main # or your default branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: r0achnnan9p/ffmpeg_hevc_over_rtmp:latest
platforms: linux/amd64,linux/arm64