mirror of
https://github.com/rommapp/romm.git
synced 2026-06-29 07:16:28 +00:00
65 lines
2.0 KiB
YAML
65 lines
2.0 KiB
YAML
name: Build and Push Docker Image
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: "Release version"
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
id-token: write
|
|
contents: write
|
|
packages: write
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Generate Docker metadata
|
|
id: meta
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
images: |
|
|
name=zurdi15/romm
|
|
name=ghcr.io/zurdi15/romm
|
|
tags: |
|
|
type=raw,value=${{ inputs.version }}
|
|
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'release') }}
|
|
labels: |
|
|
org.opencontainers.image.version=${{ inputs.version }}
|
|
org.opencontainers.image.title="zurdi15/romm"
|
|
org.opencontainers.image.description="RomM (ROM Manager) allows you to scan, enrich, and browse your game collection with a clean and responsive interface. With support for multiple platforms, various naming schemes and custom tags, RomM is a must-have for anyone who plays on emulators."
|
|
org.opencontainers.image.licenses="GPL-3.0"
|
|
- name: Build image
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
file: docker/Dockerfile
|
|
context: .
|
|
push: true
|
|
platforms: linux/arm64,linux/amd64
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|