Skip to content

v0.37.0

v0.37.0 #7

Workflow file for this run

name: CI
on:
release:
types: [published]
workflow_call:
inputs:
ref:
required: true
type: string
default: ${{ github.ref }}
workflow_dispatch:
inputs:
ref:
required: false
type: string
jobs:
call-build-and-push:
name: Call image build
uses: federated-wiki/workflows/.github/workflows/build-and-push.yml@main
if: ( inputs.ref == 0 )
with:
image-name: "base"
secrets: inherit
call-build-and-push-ref:
name: Call tagged image build
uses: federated-wiki/workflows/.github/workflows/build-and-push.yml@main
if: ( inputs.ref != 0 )
with:
image-name: "base"
ref: ${{ inputs.ref }}
secrets: inherit