2021-10-19 04:19:33 +00:00
name : Docker Develop Release
on :
push :
branches : [ develop ]
pull_request :
branches : [ develop ]
jobs :
docker-develop :
runs-on : ubuntu-latest
steps :
- name : Check Out Repo
2022-03-08 07:49:05 +00:00
uses : actions/checkout@v3
2021-10-19 04:19:33 +00:00
with :
ref : develop
- name : Login to Docker Hub
2022-05-07 15:47:55 +00:00
uses : docker/login-action@v2
2021-10-19 04:19:33 +00:00
with :
username : ${{ secrets.DOCKER_HUB_USERNAME }}
password : ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
2021-12-08 06:55:46 +00:00
- name : Set up QEMU
uses : docker/setup-qemu-action@master
with :
platforms : all
2021-10-19 04:19:33 +00:00
- name : Set up Docker Buildx
id : buildx
2022-05-07 15:47:55 +00:00
uses : docker/setup-buildx-action@v2
2021-10-19 04:19:33 +00:00
- name : Build and push
id : docker_build
2023-01-31 04:08:11 +00:00
uses : docker/build-push-action@v4
2021-10-19 04:19:33 +00:00
with :
context : ./
file : ./Dockerfile
2023-01-19 15:48:49 +00:00
build-args : |
2023-01-19 19:00:31 +00:00
"BRANCH_NAME=develop"
2022-06-23 19:12:28 +00:00
platforms : linux/amd64,linux/arm64,linux/arm/v7
2021-10-19 04:19:33 +00:00
push : true
tags : ${{ secrets.DOCKER_HUB_USERNAME }}/plex-meta-manager:develop
2022-03-08 20:03:53 +00:00
2022-05-03 18:56:06 +00:00
- name : Send Discord Commit Notification
uses : meisnate12/discord-notifications@master
with :
webhook_id : ${{ secrets.DEVELOP_WEBHOOK_ID }}
webhook_token : ${{ secrets.DEVELOP_WEBHOOK_TOKEN }}
title : Plex Meta Manager Develop Commits
2023-02-17 16:06:12 +00:00
message : "<@&954835263731949623> - An update to Plex Meta Manager has been published and is available to users of the **develop** branch.\n\nWe **stongly** recommend users who previously switched to the `nightly` branch to resolve any previous issues to now switch back to the `develop` branch."
2022-05-03 18:56:06 +00:00
commits : "true"
username : Metabot
avatar_url : https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/develop/.github/pmm.png
2022-03-08 21:35:10 +00:00
- name : Discord Success Notification
2022-03-18 19:21:36 +00:00
uses : meisnate12/discord-notifications@master
2022-03-08 21:35:10 +00:00
if : success()
with :
2022-03-18 19:21:36 +00:00
webhook_id : ${{ secrets.BUILD_WEBHOOK_ID }}
webhook_token : ${{ secrets.BUILD_WEBHOOK_TOKEN }}
2022-03-23 08:16:39 +00:00
title : "develop build: **Success**"
2022-03-18 19:21:36 +00:00
url : https://github.com/meisnate12/Plex-Meta-Manager/actions/runs/${{ github.run_id }}
2022-03-23 08:16:39 +00:00
username : Metabot
avatar_url : https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/develop/.github/pmm.png
author : Docker
author_icon_url : https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/develop/.github/docker.png
2022-03-08 21:35:10 +00:00
- name : Discord Failure Notification
2022-03-18 19:21:36 +00:00
uses : meisnate12/discord-notifications@master
2022-03-08 21:35:10 +00:00
if : failure()
2022-03-08 20:03:53 +00:00
with :
2022-03-18 19:21:36 +00:00
webhook_id : ${{ secrets.BUILD_WEBHOOK_ID }}
webhook_token : ${{ secrets.BUILD_WEBHOOK_TOKEN }}
2023-02-27 16:53:54 +00:00
message : <@&1079153184007790652>
2022-03-23 08:16:39 +00:00
title : "develop build: **Failure**"
2022-03-08 21:35:10 +00:00
color : 0xe30c43
2022-03-18 19:21:36 +00:00
url : https://github.com/meisnate12/Plex-Meta-Manager/actions/runs/${{ github.run_id }}
2022-03-23 08:16:39 +00:00
username : Metabot
avatar_url : https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/develop/.github/pmm.png
author : Docker
author_icon_url : https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/develop/.github/docker.png