Skip to content

🐳 Remove mopidy base image #34

🐳 Remove mopidy base image

🐳 Remove mopidy base image #34

Workflow file for this run

---
name: Mopidy base image
on:
push:
paths:
- "Dockerfile-snapserver"
- ".github/workflows/mopidy-base.yml"
jobs:
docker-snapserver:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: cristianpb/snapserver
tags: |
type=semver,pattern={{version}},value=v0.27.0
type=semver,pattern={{major}}.{{minor}},value=v0.27.0
type=semver,pattern={{major}},value=v0.27.0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: πŸš€ Build and push
if: github.ref == 'refs/heads/master'
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile-snapserver
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name == 'push' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
target: prod