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

97 lines
3.1 KiB
YAML
Raw Normal View History

2021-10-19 04:19:33 +00:00
name: Docker Version Release
on:
create:
tags:
- v*
jobs:
docker-build:
2024-04-26 17:24:18 +00:00
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
2022-07-13 05:13:25 +00:00
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
2021-10-19 04:19:33 +00:00
- name: Set up Docker Buildx
id: buildx
2023-09-14 14:09:13 +00:00
uses: docker/setup-buildx-action@v3
2021-10-19 04:19:33 +00:00
- name: Get the version
id: get_version
2023-01-03 22:07:05 +00:00
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
2021-10-19 04:19:33 +00:00
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-26 17:24:18 +00:00
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
2024-04-26 17:24:18 +00:00
tags: kometateam/kometa:${{ steps.get_version.outputs.VERSION }}
2024-04-08 22:50:24 +00:00
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-05-14 20:53:26 +00:00
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 }}
2022-07-13 05:13:25 +00:00
- name: Checkout Configs Repo
2023-09-19 19:28:03 +00:00
uses: actions/checkout@v4
2022-07-13 05:13:25 +00:00
with:
2024-04-22 14:20:12 +00:00
repository: Kometa-Team/Community-Configs
2022-07-13 05:13:25 +00:00
token: ${{ secrets.PAT }}
2024-04-22 14:20:12 +00:00
path: kometaconfigs
2022-07-13 05:13:25 +00:00
- name: Create & Push Tag
2024-04-22 14:20:12 +00:00
working-directory: ./kometaconfigs
2022-07-13 05:13:25 +00:00
run: |
2022-09-22 18:34:25 +00:00
git tag ${{ steps.get_version.outputs.VERSION }}
git push origin ${{ steps.get_version.outputs.VERSION }}
2022-09-20 15:03:34 +00:00
- name: Create release
id: create_release
2024-03-19 20:31:25 +00:00
uses: softprops/action-gh-release@v2
2022-09-20 15:03:34 +00:00
with:
2023-02-13 23:13:54 +00:00
body_path: CHANGELOG
2022-09-20 15:03:34 +00:00
token: ${{ secrets.PAT }}
2022-09-27 06:19:29 +00:00
tag_name: ${{ steps.get_version.outputs.VERSION }}