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

75 lines
2.4 KiB
YAML
Raw Normal View History

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