Plex-Meta-Manager/.github/workflows/docker-version.yml

97 lines
3.1 KiB
YAML
Raw Normal View History

2024-05-31 13:59:14 +00:00
name: Docker Version Build
2021-10-19 04:19:33 +00:00
on:
create:
tags:
- v*
2021-10-19 04:19:33 +00:00
jobs:
2024-05-31 13:59:14 +00:00
docker-build-version:
if: ${{ startsWith(github.ref, 'refs/tags/v1') || startsWith(github.ref, 'refs/tags/v2') }}
2021-10-19 04:19:33 +00:00
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
2023-09-11 20:54:55 +00:00
uses: actions/checkout@v4
with:
fetch-depth: 0
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
- name: Get the version
id: get_version
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
2024-04-08 22:50:24 +00:00
- name: Build and Push
2021-10-19 04:19:33 +00:00
id: docker_build
uses: docker/build-push-action@v6
2021-10-19 04:19:33 +00:00
with:
context: ./
file: ./Dockerfile
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
tags: kometateam/kometa:${{ steps.get_version.outputs.VERSION }}
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 }}
title: "${{ vars.REPO_NAME }} ${{ steps.get_version.outputs.VERSION }}: ${{ vars.TEXT_SUCCESS }}"
2024-04-29 14:49:46 +00:00
url: https://github.com/Kometa-Team/${{ vars.REPO_NAME }}/actions/runs/${{ github.run_id }}
2024-05-14 20:53:26 +00:00
color: ${{ vars.COLOR_SUCCESS }}
username: ${{ vars.BOT_NAME }}
avatar_url: ${{ vars.BOT_IMAGE }}
author: ${{ vars.DOCKER_NAME }}
author_icon_url: ${{ vars.DOCKER_IMAGE }}
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 }}
2024-05-14 20:53:26 +00:00
message: ${{ vars.BUILD_FAILURE_ROLE }}
title: "${{ vars.REPO_NAME }} ${{ steps.get_version.outputs.VERSION }}: ${{ vars.TEXT_FAILURE }}"
2024-04-29 14:49:46 +00:00
url: https://github.com/Kometa-Team/${{ vars.REPO_NAME }}/actions/runs/${{ github.run_id }}
2024-05-14 20:53:26 +00:00
color: ${{ vars.COLOR_FAILURE }}
username: ${{ vars.BOT_NAME }}
avatar_url: ${{ vars.BOT_IMAGE }}
author: ${{ vars.DOCKER_NAME }}
author_icon_url: ${{ vars.DOCKER_IMAGE }}
- name: Checkout Configs Repo
uses: actions/checkout@v4
with:
repository: Kometa-Team/Community-Configs
token: ${{ secrets.PAT }}
path: kometaconfigs
- name: Create & Push Tag
working-directory: ./kometaconfigs
run: |
git tag ${{ steps.get_version.outputs.VERSION }}
git push origin ${{ steps.get_version.outputs.VERSION }}
- name: Create release
id: create_release
uses: softprops/action-gh-release@v2
with:
body_path: CHANGELOG
token: ${{ secrets.PAT }}
tag_name: ${{ steps.get_version.outputs.VERSION }}