WIP: github: Modify actions; don't run the main build, force running … #30
Workflow file for this run
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 docker images | |
on: | |
push: | |
workflow_dispatch: | |
inputs: | |
commit: | |
description: 'Commit to extract from' | |
type: string | |
branch: | |
description: 'Branch to extract from' | |
type: string | |
login: | |
description: 'Log in to Docker Hub' | |
type: boolean | |
default: true | |
push: | |
description: 'Push the built images' | |
type: boolean | |
default: false | |
jobs: | |
docker-build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- { file: Dockerfile, maintag: latest, prefix: } | |
- { file: Dockerfile.dev, maintag: dev, prefix: dev- } | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to Docker Hub | |
if: false | |
uses: docker/login-action@v2 | |
with: | |
username: ${{secrets.DOCKER_USERNAME}} | |
password: ${{secrets.DOCKER_PASSWORD}} | |
- name: Build Docker images | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: false | |
file: ./${{matrix.file}} | |
tags: | | |
mstorsjo/llvm-mingw:${{matrix.maintag}} | |
- name: Inspect Docker images | |
run: | | |
docker images |