Skip to content

Use chat channel selector on admin side too #18

Use chat channel selector on admin side too

Use chat channel selector on admin side too #18

Workflow file for this run

name: Build and Publish Image
on:
push:
branches:
- staging
- master
- main
concurrency:
group: image-${{ github.ref_name }}
cancel-in-progress: false
permissions:
contents: read
packages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=sha,format=short,prefix=,priority=1000
type=raw,value=latest,enable={{is_default_branch}},priority=0
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
build-args: |
ASTRA_BUILD_SHA=${{ steps.meta.outputs.version }}
labels: ${{ steps.meta.outputs.labels }}