Skip to content

Add matter over Thread #2

Add matter over Thread

Add matter over Thread #2

Workflow file for this run

name: Build
on:
push:
branches:
- main
- feature/*
workflow_dispatch:
permissions: read-all
jobs:
trunk_check:
name: Trunk Check
runs-on: ubuntu-latest
permissions:
checks: write # For trunk to post annotations
contents: read # For repo checkout
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Trunk Check
uses: trunk-io/trunk-action@v1
build_docker_image:
name: Build docker image
runs-on: ubuntu-latest
needs: trunk_check
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}