Skip to content

trying to force the plattform #15

trying to force the plattform

trying to force the plattform #15

Workflow file for this run

name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots package
- uses: mr-smithers-excellent/docker-build-push@v6
name: Build & push Docker image
with:
image: stephanst/chicken-farm
tags: v1, latest
platform: linux/arm/v7
registry: docker.io
dockerfile: Dockerfile
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}