Plex-Meta-Manager/.github/workflows/nightly.yml

52 lines
1.2 KiB
YAML
Raw Normal View History

2022-03-06 04:34:05 +00:00
name: Docker Nightly Release
on:
push:
branches: [ nightly ]
pull_request:
branches: [ nightly ]
jobs:
docker-develop:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
2022-03-08 07:49:05 +00:00
uses: actions/checkout@v3
2022-03-06 04:34:05 +00:00
with:
ref: nightly
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@master
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: ./
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/plex-meta-manager:nightly
- name: Discord Notification
uses: sarisia/actions-status-discord@v1
with:
webhook: ${{ secrets.DISCORD_WEBHOOK }}
nodetail: true
title: Nightly Docker Build Finished