Skip to content

Update goutubedl to 0986214517b1 from 4b7a642b1f09 #502

Update goutubedl to 0986214517b1 from 4b7a642b1f09

Update goutubedl to 0986214517b1 from 4b7a642b1f09 #502

Workflow file for this run

name: CI/CD
on:
push:
branches:
- 'master'
tags:
- '**'
pull_request:
branches:
- 'master'
jobs:
cicd:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Docker meta
id: docker_meta
uses: docker/metadata-action@v4
with:
images: mwader/ydls
tags: |
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/master' }}
type=ref,event=tag
flavor: latest=false
-
name: Build and push master as latest
if: github.ref == 'refs/heads/master'
uses: docker/build-push-action@v3
with:
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
-
name: Build and push branch or test PR
if: github.ref != 'refs/heads/master'
uses: docker/build-push-action@v3
with:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}