|
|
|
name: Docker Version Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
create:
|
|
|
|
tags:
|
|
|
|
- v*
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
docker-develop:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Check Out Repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- 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: Get the version
|
|
|
|
id: get_version
|
|
|
|
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
|
|
|
|
|
|
|
|
- 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:${{ steps.get_version.outputs.VERSION }}
|
|
|
|
|
|
|
|
- name: Discord Success Notification
|
|
|
|
uses: sarisia/actions-status-discord@v1
|
|
|
|
if: success()
|
|
|
|
with:
|
|
|
|
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
|
|
|
nodetail: true
|
|
|
|
title: "${{ steps.get_version.outputs.VERSION }} Docker Build: **Success**"
|
|
|
|
username: Docker
|
|
|
|
avatar_url: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/master/.github/docker.png
|
|
|
|
|
|
|
|
- name: Discord Failure Notification
|
|
|
|
uses: sarisia/actions-status-discord@v1
|
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
|
|
|
nodetail: true
|
|
|
|
title: "${{ steps.get_version.outputs.VERSION }} Docker Build: **Failure**"
|
|
|
|
color: 0xe30c43
|
|
|
|
username: Docker
|
|
|
|
avatar_url: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/master/.github/docker.png
|