Skip to content

Commit

Permalink
Build docker image for calaos
Browse files Browse the repository at this point in the history
  • Loading branch information
raoulh authored Mar 10, 2024
1 parent 36677f7 commit de1f711
Showing 1 changed file with 77 additions and 18 deletions.
95 changes: 77 additions & 18 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,78 @@
name: publish
on: [push]
name: Build dev/release docker image

on:
push:
branches: [ main ]
workflow_dispatch:
inputs:
vincrement:
description: 'Package version increment (major.minor.xxx)'
required: true
default: 'patch'
type: choice
options:
- major
- minor
- patch

env:
REGISTRY_IMAGE: ghcr.io/calaos/calaos_base
NAME: calaos_base
IMG_TAG: dev

jobs:
publish-docker-image:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build the Docker image
run: |
docker build . --tag ghcr.io/trickeydan/hue2mqtt-python:latest
docker run ghcr.io/trickeydan/hue2mqtt-python:latest
docker push ghcr.io/trickeydan/hue2mqtt-python:latest
publish-docker-image:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Calaos Action Bump Version
id: calaos_version
uses: calaos/action-bump-version@2
with:
version_fragment: 'prerelease'

- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY_IMAGE }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to Github Packages
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push by digest
id: build
uses: docker/build-push-action@v4
with:
context: .
push: true
build-args: APP_VERSION=${{ steps.calaos_version.outputs.version_bumped }}
tags: |
${{ env.REGISTRY_IMAGE }}:${{ env.IMG_TAG }}
${{ env.REGISTRY_IMAGE }}:${{ steps.calaos_version.outputs.version_bumped }}
- name: Create Tag
uses: negz/create-tag@v1
with:
version: ${{ steps.calaos_version.outputs.version_bumped }}
token: ${{ secrets.ACTION_DISPATCH }}

- name: Build deb
uses: peter-evans/repository-dispatch@v1
with:
token: ${{ secrets.ACTION_DISPATCH }}
repository: calaos/pkgdebs
event-type: build_deb
client-payload: '{ "pkgname": "calaos-hue2mqtt", "version": "${{ steps.calaos_version.outputs.version_bumped }}", "image_src": "${{ env.REGISTRY_IMAGE }}:${{ steps.calaos_version.outputs.version_bumped }}", "prerelease": true }'

0 comments on commit de1f711

Please sign in to comment.