diff options
author | Shav Kinderlehrer <[email protected]> | 2024-04-06 13:07:26 -0400 |
---|---|---|
committer | Shav Kinderlehrer <[email protected]> | 2024-04-06 13:07:26 -0400 |
commit | 4002ff4cad95c48db1a68b7b1f9b608812c18d05 (patch) | |
tree | 4760b149a765d251949debd5fc948560115954c8 | |
parent | 2c39714ca78201411693dba1fddb080ca90e140b (diff) | |
download | chela-4002ff4cad95c48db1a68b7b1f9b608812c18d05.tar.gz chela-4002ff4cad95c48db1a68b7b1f9b608812c18d05.zip |
Add docker action
-rw-r--r-- | .github/workflows/docker-image.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 0000000..2723585 --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,29 @@ +name: Build and Push Docker Image + +on: + push: + branches: + - "main" + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: true + tags: ${{ secrets.DOCKERHUB_USERNAME }}/chela:latest |