diff --git a/.github/workflows/buildimage.yml b/.github/workflows/buildimage.yml deleted file mode 100644 index d9a5423..0000000 --- a/.github/workflows/buildimage.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: buildx - -on: - push: - branches: mqtt - -jobs: - buildx: - runs-on: ubuntu-latest - steps: - - - name: Checkout - uses: actions/checkout@v1 - with: - ref: mqtt - - - name: Set up Docker Buildx - id: buildx - uses: crazy-max/ghaction-docker-buildx@v1 - with: - version: latest - - - name: Available platforms - run: echo ${{ steps.buildx.outputs.platforms }} - - - name: Run Buildx - run: | - docker buildx build \ - --platform linux/amd64,linux/arm/v7,linux/arm64 \ - --output "type=image,push=false" \ - --file ./Docker/Dockerfile .