diff options
author | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-08-25 15:06:05 +0200 |
---|---|---|
committer | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-08-25 15:09:02 +0200 |
commit | d965e4b8c37ac6a4560657c7b54367e861142b97 (patch) | |
tree | 03e18f1391f6366e1fdbf2104eadbba9cbf99137 /.github | |
parent | 567f420d3c11ab99365183c209a305c6ae8f5727 (diff) |
chore: set up docker publish workflow
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/docker-publish.yml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml new file mode 100644 index 0000000..abd269e --- /dev/null +++ b/.github/workflows/docker-publish.yml @@ -0,0 +1,33 @@ +name: Publish Docker image + +on: + push: + +jobs: + docker-publish: + 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@v6 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: true + tags: migalmoreno/tubo:latest + cache-from: type=gha + cache-to: type=gha,mode=max |