2021-10-19 00:19:33 -04:00
name : Docker Develop Release
on :
push :
branches : [ develop ]
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 : develop
file : Dockerfile
- tag : lxml-develop
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
with :
ref : develop
- 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 }}
2023-01-19 10:48:49 -05:00
build-args : |
2023-01-19 14:00:31 -05:00
"BRANCH_NAME=develop"
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 }}
2023-11-20 23:07:32 -07:00
cache-from : type=gha
cache-to : type=gha,mode=max
2022-03-08 15:03:53 -05:00
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 10:49:46 -04: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 10:57:22 -04:00
color : 844716
2024-04-22 10:20:12 -04:00
username : Kobota
2024-04-29 10:49:46 -04:00
avatar_url : https://raw.githubusercontent.com/Kometa-Team/Kometa/develop/.github/bot.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/develop/.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()
2022-03-08 15:03:53 -05:00
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 10:49:46 -04: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 10:57:22 -04:00
color : 14879811
2024-04-22 10:20:12 -04:00
username : Kobota
2024-04-29 10:49:46 -04:00
avatar_url : https://raw.githubusercontent.com/Kometa-Team/Kometa/develop/.github/bot.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/develop/.github/docker.png
2024-04-23 11:33:27 -04:00
commit-notification :
runs-on : ubuntu-latest
if : ${{ success() }}
needs : [ docker]
steps :
- name : Send Discord Commit Notification
uses : Kometa-Team/discord-notifications@master
with :
webhook_id_token : ${{ secrets.DEVELOP_WEBHOOK }}
title : Commits
message : "<@&954835263731949623> - An update to Kometa has been published and is available to users of the **develop** branch.\n\nWe **strongly** recommend users who previously switched to the `nightly` branch to resolve any previous issues to now switch back to the `develop` branch now."
commits : "true"
username : Kobota
2024-04-29 10:49:46 -04:00
avatar_url : https://raw.githubusercontent.com/Kometa-Team/Kometa/develop/.github/bot.png
author : ${{ vars.REPO_NAME }} Develop Release
2024-04-23 11:33:27 -04:00
author_icon_url : https://raw.githubusercontent.com/Kometa-Team/Kometa/develop/.github/release.png