(Multi Arch) Publish Docker Image to Docker Hub #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: (ARM64) Publish Docker Image to Docker Hub | |
on: | |
workflow_dispatch: # Triggered manually | |
jobs: | |
build-and-publish: | |
runs-on: macos-14 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build and push ARM64 Docker image | |
run: | | |
brew install colima | |
colima start | |
sudo docker login -u akhilrana -p ${{ secrets.DOCKER_PASSWORD }} | |
sudo docker build -t akhilrana/telegramarr:latest-arm64 . | |
sudo docker push akhilrana/telegramarr:latest-arm-64 |