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

82 lines
2.9 KiB
YAML
Raw Normal View History

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
2022-05-07 15:47:55 +00:00
uses: docker/build-push-action@v3
2021-10-19 04:19:33 +00:00
with:
context: ./
file: ./Dockerfile
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
- 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
2022-09-20 19:56:03 +00:00
message: "<@&954835263731949623> - An update to Plex Meta Manager has been published and is available to users of the **develop** branch."
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()
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: **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