Skip to content

CI

CI #92

Workflow file for this run

name: CI
on:
workflow_dispatch:
jobs:
ci:
name: Build and publish test image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- 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@v6
with:
context: .
push: true
platforms: linux/amd64,linux/arm64,linux/arm/v7
tags: |
ghcr.io/raunot/plex-rewind:${{ github.sha }}
build-args: |
NEXT_PUBLIC_VERSION_TAG=${{ github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max