Skip to content

Commit

Permalink
fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
maschmann committed Jan 12, 2023
1 parent 4d2446a commit 3e0ded2
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/create-image-on-new-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,13 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: 'arm64,arm,amd64'

- name: Set up Docker Buildx
id: buildx
Expand All @@ -35,12 +40,6 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# -
# name: Build and push
# uses: docker/build-push-action@v3
# with:
# push: true
# tags: maschmann/ocr-my-files:latest

- name: Docker meta
id: meta_build_id # you'll use this in the next step
Expand All @@ -59,7 +58,7 @@ jobs:
type=sha
- name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64,linux/arm/v7,linux/arm64
Expand Down

0 comments on commit 3e0ded2

Please sign in to comment.