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

95 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-version:
2021-10-19 04:19:33 +00:00
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
2022-03-08 07:49:05 +00:00
uses: actions/checkout@v3
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
2022-05-07 15:47:55 +00:00
uses: docker/login-action@v2
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
2022-05-07 15:47:55 +00:00
uses: docker/setup-buildx-action@v2
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
- name: Build and push
id: docker_build
uses: docker/build-push-action@v4
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: ${{ secrets.DOCKER_HUB_USERNAME }}/plex-meta-manager:${{ steps.get_version.outputs.VERSION }}
2022-03-08 21:35:10 +00:00
- name: Discord Success Notification
2022-03-18 19:21:36 +00:00
uses: meisnate12/discord-notifications@master
2022-03-08 21:35:10 +00:00
if: success()
with:
2022-03-18 19:21:36 +00:00
webhook_id: ${{ secrets.BUILD_WEBHOOK_ID }}
webhook_token: ${{ secrets.BUILD_WEBHOOK_TOKEN }}
2022-03-23 08:16:39 +00:00
title: "${{ steps.get_version.outputs.VERSION }} build: **Success**"
2022-03-18 19:21:36 +00:00
url: https://github.com/meisnate12/Plex-Meta-Manager/actions/runs/${{ github.run_id }}
2022-03-23 08:16:39 +00:00
username: Metabot
avatar_url: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/master/.github/pmm.png
author: Docker
author_icon_url: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/master/.github/docker.png
2022-03-08 21:35:10 +00:00
- name: Discord Failure Notification
2022-03-18 19:21:36 +00:00
uses: meisnate12/discord-notifications@master
2022-03-08 21:35:10 +00:00
if: failure()
with:
2022-03-18 19:21:36 +00:00
webhook_id: ${{ secrets.BUILD_WEBHOOK_ID }}
webhook_token: ${{ secrets.BUILD_WEBHOOK_TOKEN }}
2022-03-23 08:16:39 +00:00
title: "${{ steps.get_version.outputs.VERSION }} build: **Failure**"
2022-03-08 21:35:10 +00:00
color: 0xe30c43
2022-03-18 19:21:36 +00:00
url: https://github.com/meisnate12/Plex-Meta-Manager/actions/runs/${{ github.run_id }}
2022-03-23 08:16:39 +00:00
username: Metabot
avatar_url: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/master/.github/pmm.png
author: Docker
author_icon_url: https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/master/.github/docker.png
2022-07-13 05:13:25 +00:00
- name: Checkout Configs Repo
uses: actions/checkout@v3
with:
repository: meisnate12/Plex-Meta-Manager-Configs
token: ${{ secrets.PAT }}
path: pmmconfigs
- name: Create & Push Tag
working-directory: ./pmmconfigs
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
uses: softprops/action-gh-release@v1
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 }}