Skip to content

Commit

Permalink
feat: add arm64/amd64 docker builds to release-please ci
Browse files Browse the repository at this point in the history
  • Loading branch information
vicwomg committed Dec 24, 2024
1 parent 69cb031 commit a07265f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,22 @@ jobs:

- name: Publish Python 🐍 distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build and push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: true
tags: vicwomg/pikaraoke:latest

0 comments on commit a07265f

Please sign in to comment.