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

75 lines
2.4 KiB
YAML
Raw Normal View History

2021-10-19 00:19:33 -04:00
name: Docker Latest Release
on:
push:
branches: [ master ]
jobs:
2024-04-22 10:57:22 -04:00
docker:
2021-10-19 00:19:33 -04:00
runs-on: ubuntu-latest
2024-04-23 11:33:27 -04:00
strategy:
matrix:
node:
- tag: latest
file: Dockerfile
- tag: lxml-latest
file: Dockerfile.lxml
2021-10-19 00:19:33 -04:00
steps:
- name: Check Out Repo
2023-09-11 16:54:55 -04:00
uses: actions/checkout@v4
2021-10-19 00:19:33 -04:00
- name: Login to Docker Hub
2023-09-14 10:09:13 -04:00
uses: docker/login-action@v3
2021-10-19 00:19:33 -04:00
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
2021-12-08 01:55:46 -05:00
- name: Set up QEMU
uses: docker/setup-qemu-action@master
with:
platforms: all
2023-11-30 11:57:09 -05:00
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
2024-04-08 18:50:24 -04:00
- name: Build and Push
2021-10-19 00:19:33 -04:00
id: docker_build
2023-09-14 10:09:13 -04:00
uses: docker/build-push-action@v5
2021-10-19 00:19:33 -04:00
with:
context: ./
2024-04-23 11:33:27 -04:00
file: ./${{ matrix.node.file }}
2022-06-23 15:12:28 -04:00
platforms: linux/amd64,linux/arm64,linux/arm/v7
2021-10-19 00:19:33 -04:00
push: true
2024-04-23 11:33:27 -04:00
tags: kometateam/kometa:${{ matrix.node.tag }}
cache-from: type=gha
cache-to: type=gha,mode=max
2022-03-08 16:35:10 -05:00
- name: Discord Success Notification
2024-04-22 10:20:12 -04:00
uses: Kometa-Team/discord-notifications@master
2022-03-08 16:35:10 -05:00
if: success()
with:
2024-04-22 10:57:22 -04:00
webhook_id_token: ${{ secrets.BUILD_WEBHOOK }}
2024-04-29 09:08:16 -04:00
title: "${{ env.REPO_NAME }} ${{ matrix.node.tag }}: **Build Successful**"
url: https://github.com/Kometa-Team/${{ env.REPO_NAME }}/actions/runs/${{ github.run_id }}
2024-04-22 10:57:22 -04:00
color: 844716
2024-04-22 10:20:12 -04:00
username: Kobota
avatar_url: https://raw.githubusercontent.com/Kometa-Team/Kometa/master/.github/logo.png
2022-03-23 04:16:39 -04:00
author: Docker
2024-04-22 10:20:12 -04:00
author_icon_url: https://raw.githubusercontent.com/Kometa-Team/Kometa/master/.github/docker.png
2022-03-08 16:35:10 -05:00
- name: Discord Failure Notification
2024-04-22 10:20:12 -04:00
uses: Kometa-Team/discord-notifications@master
2022-03-08 16:35:10 -05:00
if: failure()
with:
2024-04-22 10:57:22 -04:00
webhook_id_token: ${{ secrets.BUILD_WEBHOOK }}
2023-02-27 11:53:54 -05:00
message: <@&1079153184007790652>
2024-04-29 09:08:16 -04:00
title: "${{ env.REPO_NAME }} ${{ matrix.node.tag }}: **Build Failed**"
url: https://github.com/Kometa-Team/${{ env.REPO_NAME }}/actions/runs/${{ github.run_id }}
2024-04-22 10:57:22 -04:00
color: 14879811
2024-04-22 10:20:12 -04:00
username: Kobota
avatar_url: https://raw.githubusercontent.com/Kometa-Team/Kometa/master/.github/logo.png
2022-03-23 04:16:39 -04:00
author: Docker
2024-04-22 10:20:12 -04:00
author_icon_url: https://raw.githubusercontent.com/Kometa-Team/Kometa/master/.github/docker.png