CI: Add build and release #17
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: Container Build and Release | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
branches: | |
- '**' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
workflow_dispatch: | |
jobs: | |
build-release-container: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: 'main' | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build and push container to ghcr | |
id: docker_build | |
uses: docker/build-push-action@v3 | |
with: | |
platforms: linux/amd64 | |
push: true | |
file: Containerfile | |
tags: ghcr.io/bbusse/compost-sensor:latest | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} |