Skip to content

v-2024-01-05.2

v-2024-01-05.2 #211

Workflow file for this run

name: Build and publish image to Docker Hub
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
# Github stores the current tag in an enviroment variable (GITHUB_REF) in the format /refs/tags/TAG_NAME.
# Using shell parameter expansion, we extract the TAG_NAME. Also, it seems we cannot use shell tricks
# directly in the with block, so doing it in a separate step and then fetching its output when needed.
- name: Get the tag name
id: get_tag
run: echo ::set-output name=TAG::${GITHUB_REF/refs\/tags\//}
- name: Docker Setup Buildx
uses: docker/setup-buildx-action@v2
- name: Docker Login
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Build and push Docker images
uses: docker/build-push-action@v4
with:
build-args: GIT_COMMIT_SHA=${{ steps.get_tag.outputs.TAG }}
cache-from: metabrainz/listenbrainz:cache
# use mode=max to cache intermediate layers as well
cache-to: type=registry,mode=max,oci-mediatypes=true,compression=zstd,compression-level=7,ref=metabrainz/listenbrainz:cache
push: true
tags: metabrainz/listenbrainz:${{ steps.get_tag.outputs.TAG }}
target: listenbrainz-prod