@ -3,13 +3,18 @@ name: Docker Develop Release
on :
push:
branches : [ develop ]
pull_request:
branches : [ develop ]
jobs:
docker:
runs-on : ubuntu-latest
strategy:
matrix:
node:
- tag : develop
file : Dockerfile
- tag : lxml-develop
file : Dockerfile.lxml
steps:
- name : Check Out Repo
@ -37,47 +42,21 @@ jobs:
uses : docker/build-push-action@v5
with:
context : ./
file : ./ Dockerfile
file : ./ ${{ matrix.node.file }}
build-args : |
"BRANCH_NAME=develop"
platforms : linux/amd64,linux/arm64,linux/arm/v7
push : true
tags : kometateam/kometa: develop
tags : kometateam/kometa: ${{ matrix.node.tag }}
cache-from : type=gha
cache-to : type=gha,mode=max
- name : Build and Push lxml Version
id : docker_build_lxml
uses : docker/build-push-action@v5
with:
context : ./
file : ./Dockerfile.lxml
build-args : |
"BRANCH_NAME=develop"
platforms : linux/amd64,linux/arm64,linux/arm/v7
push : true
tags : kometateam/kometa:lxml-develop
cache-from : type=gha
cache-to : type=gha,mode=max
- 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
avatar_url : https://raw.githubusercontent.com/Kometa-Team/Kometa/develop/.github/logo.png
author : ${{ secrets.REPO_NAME }} Develop Release
author_icon_url : https://raw.githubusercontent.com/Kometa-Team/Kometa/develop/.github/release.png
- name : Discord Success Notification
uses : Kometa-Team/discord-notifications@master
if : success()
with:
webhook_id_token : ${{ secrets.BUILD_WEBHOOK }}
title : "${{ secrets.REPO_NAME }} develop : **Build Successful**"
title : "${{ secrets.REPO_NAME }} ${{ matrix.node.tag }}: **Build Successful**"
url : https://github.com/Kometa-Team/${{ secrets.REPO_NAME }}/actions/runs/${{ github.run_id }}
color : 844716
username : Kobota
@ -91,10 +70,28 @@ jobs:
with:
webhook_id_token : ${{ secrets.BUILD_WEBHOOK }}
message : <@&1079153184007790652>
title : "${{ secrets.REPO_NAME }} develop : **Build Failed**"
title : "${{ secrets.REPO_NAME }} ${{ matrix.node.tag }} : **Build Failed**"
url : https://github.com/Kometa-Team/${{ secrets.REPO_NAME }}/actions/runs/${{ github.run_id }}
color : 14879811
username : Kobota
avatar_url : https://raw.githubusercontent.com/Kometa-Team/Kometa/develop/.github/logo.png
author : Docker
author_icon_url : https://raw.githubusercontent.com/Kometa-Team/Kometa/develop/.github/docker.png
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
avatar_url : https://raw.githubusercontent.com/Kometa-Team/Kometa/develop/.github/logo.png
author : ${{ secrets.REPO_NAME }} Develop Release
author_icon_url : https://raw.githubusercontent.com/Kometa-Team/Kometa/develop/.github/release.png