Skip to content

Attempt to fix plex_request for shard users #104

Attempt to fix plex_request for shard users

Attempt to fix plex_request for shard users #104

name: Build and Push Docker images
on:
workflow_dispatch:
push:
branches:
- 'main'
tags:
- 'v*'
pull_request:
branches:
- 'main'
jobs:
build-and-push:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- dockerfile: ./Dockerfile.blackhole
image: ghcr.io/${{ github.repository }}/blackhole
- dockerfile: ./Dockerfile.watchlist
image: ghcr.io/${{ github.repository }}/watchlist
- dockerfile: ./Dockerfile.plex_authentication
image: ghcr.io/${{ github.repository }}/plex_authentication
- dockerfile: ./Dockerfile.plex_request
image: ghcr.io/${{ github.repository }}/plex_request
- dockerfile: ./Dockerfile.scripts
image: ghcr.io/${{ github.repository }}/scripts
- dockerfile: ./Dockerfile.plex_request_nginx
image: ghcr.io/${{ github.repository }}/plex_request_nginx
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ matrix.image }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push docker image
uses: docker/build-push-action@v5
with:
context: .
file: ${{ matrix.dockerfile }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}