Skip to content

bug

bug #3

Workflow file for this run

name: ci
on:
push:
branches:
- "master"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
platforms: |
linux/arm/v5
linux/arm/v7
linux/arm64
with:

Check failure on line 30 in .github/workflows/docker-arm.yml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/docker-arm.yml (Line: 30, Col: 9): 'with' is already defined
push: true
tags: star7th/showdoc:arm-latest
file: DockerfileARM # 使用仓库下的DockerfileARM文件进行构建