onstar2mqtt/.github/workflows/release.yml
dependabot[bot] 166c614769
Bump actions/checkout from 2 to 2.3.4
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 2.3.4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v2.3.4)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-12 05:31:36 +00:00

36 lines
1003 B
YAML

name: release
on:
release:
types: [published]
jobs:
push_to_registry:
name: release - build, push
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2.3.4
- name: Docker meta
id: docker_meta
uses: crazy-max/ghaction-docker-meta@v2.5.0
with:
images: michaelwoods/onstar2mqtt
tag-sha: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push to DockerHub
uses: docker/build-push-action@v2
with:
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}