manual #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: manual | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
diffbase: | ||
description: the version or commit to diff against | ||
required: false | ||
type: string | ||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
jobs: | ||
# Use the latest container to render the samples with the given diff | ||
render-samples: | ||
needs: build-container | ||
uses: ./.github/workflows/render.yml | ||
with: | ||
container-version: latest | ||
input: guide.tcg | ||
workflow: pr | ||
manual_diffbase: ${{ inputs.diffbase }} |