Skip to content

Build separate containers for targeting arm and i386 #5

Build separate containers for targeting arm and i386

Build separate containers for targeting arm and i386 #5

Workflow file for this run

name: Docker
on:
push:
branches:
- main
jobs:
docker:
runs-on: ubuntu-22.04
strategy:
matrix:
target_arch: [arm, i386]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build and Push Docker Image
uses: mr-smithers-excellent/docker-build-push@v5
with:
image: windows-ce-build-environment-${{ matrix.target_arch }}
registry: ghcr.io
buildArgs:
- target_arch=${{ matrix.target_arch }}

Check failure on line 26 in .github/workflows/docker.yml

View workflow run for this annotation

GitHub Actions / Docker

Invalid workflow file

The workflow is not valid. .github/workflows/docker.yml (Line: 26, Col: 11): A sequence was not expected
addLatest: true
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}