Skip to content

CI Build: Pass image name & GitHub tag to backend workflow #7

CI Build: Pass image name & GitHub tag to backend workflow

CI Build: Pass image name & GitHub tag to backend workflow #7

Workflow file for this run

name: CI Build
on:
# Build main container:
repository_dispatch:
types: [build]
workflow_dispatch:
push:
branches: ['main']
paths-ignore: ['**/*.md']
# Build release container:
tags:
- 'v*.*'
- 'v*.*.*'
# Dry run for PRs:
pull_request:
branches: ['main']
paths-ignore: ['**/*.md']
permissions:
contents: write
packages: write
# This is used to complete the identity challenge
# with sigstore/fulcio when running outside of PRs.
id-token: write
jobs:
backend:
permissions:
contents: write
packages: write
id-token: write
uses: llamara-ai/llamara-backend/.github/workflows/build.yaml@ci
with:
image-name: 'llamara-ai/llamara'