Skip to content

Add album art info.

Add album art info. #7

Workflow file for this run

name: docker-release
on:
push:
branches:
- 'main'
- 'develop'
tags:
- 'v*.*.*'
jobs:
build:
name: Buid and push Docker image to GitHub Container registry
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Docker Setup Buildx
uses: docker/[email protected]
- name: Docker Login
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker images
uses: docker/[email protected]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
REFERENCE: ${{ github.ref == 'refs/heads/main' && 'latest' || github.ref_name }}
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.REFERENCE }}