Skip to content

fix(radio): where station audiences were mistakenly reset #61

fix(radio): where station audiences were mistakenly reset

fix(radio): where station audiences were mistakenly reset #61

name: Build combine-discord and publish to ghcr.io
on:
push:
branches:
- combine-discord
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
id: checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Get image repository short commit
id: version
run: |
echo "SHORT_SHA=$(echo $GITHUB_SHA | cut -c 1-8)" >> $GITHUB_OUTPUT
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
file: ./packages/radio/docker/discord/Dockerfile
push: true
tags: "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.version.outputs.SHORT_SHA }},${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest"