release-published #2
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: Docker Build and Publish | |
# Note: This workflow publishes containers to: | |
# - Docker Hub: https://hub.docker.com/r/billchurch/bhyve-mqtt | |
# - GitHub Container Registry: ghcr.io/billchurch/bhyve-mqtt | |
on: | |
release: | |
types: [published] | |
repository_dispatch: | |
types: [release-published] | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- 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: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
billchurch/bhyve-mqtt | |
ghcr.io/${{ github.repository }} | |
tags: | | |
type=semver,pattern={{version}},value=${{ github.event.release.tag_name }} | |
type=semver,pattern={{major}}.{{minor}},value=${{ github.event.release.tag_name }} | |
type=semver,pattern={{major}},value=${{ github.event.release.tag_name }} | |
type=raw,value=latest | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |