Build #10
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: Build | |
on: | |
workflow_run: | |
workflows: ['Run Tests'] | |
branches: ['main'] | |
types: [completed] | |
workflow_dispatch: | |
inputs: | |
img_tag: | |
description: Docker Image Tag | |
ref: | |
description: Revision or Branch to build | |
default: main | |
push_latest: | |
description: Set True if the build is for the latest version | |
type: boolean | |
required: false | |
default: false | |
platforms: | |
description: Platforms to build for | |
type: choice | |
default: linux/amd64,linux/arm64 | |
options: | |
- linux/amd64,linux/arm64 | |
- linux/amd64 | |
- linux/arm64 | |
rebuild: | |
description: Rebuild this image? | |
type: boolean | |
default: false | |
jobs: | |
build-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Build Image | |
uses: hathitrust/github_actions/[email protected] | |
with: | |
image: ghcr.io/${{ github.repository }}-unstable | |
dockerfile: Dockerfile.prod | |
img_tag: ${{ inputs.img_tag }} | |
tag: ${{ inputs.ref }} | |
push_latest: ${{ inputs.push_latest}} | |
registry_token: ${{ github.token }} | |
rebuild: ${{ inputs.rebuild }} | |
submodules: recursive |