Skip to content

Commit

Permalink
Disable docker builds on github for now
Browse files Browse the repository at this point in the history
Switching at least temporarily to docker hub auto builds.
This is due to docker hub license / auth issues.
  • Loading branch information
J12934 committed Jan 24, 2022
1 parent 54b29c6 commit 403c427
Showing 1 changed file with 1 addition and 42 deletions.
43 changes: 1 addition & 42 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,45 +12,4 @@ jobs:
with:
access-token: ${{ secrets.ACCESS_TOKEN }}
charts-folder: helm
deploy-branch: gh-pages
dockerBuilds:
name: "Build"
runs-on: ubuntu-latest
strategy:
matrix:
component:
- progress-watchdog
- cleaner
- juice-balancer
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Docker Meta
id: docker_meta
uses: crazy-max/ghaction-docker-meta@v1
with:
images: iteratec/${{ matrix.component }}
tag-semver: |
{{ raw }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: "Set up QEMU"
uses: docker/setup-qemu-action@v1

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and Push
uses: docker/build-push-action@v2
with:
context: ./${{ matrix.component }}
file: ./${{ matrix.component }}/Dockerfile
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
deploy-branch: gh-pages

0 comments on commit 403c427

Please sign in to comment.