Skip to content

chore(ci): added ghcr to docker workflow #20

chore(ci): added ghcr to docker workflow

chore(ci): added ghcr to docker workflow #20

Workflow file for this run

name: Publish packages 🐳📦
on:
push:
branches:
- main
tags:
- "*.*.*"
pull_request:
branches:
- main
types:
- labeled
jobs:
publish-packages:
if: github.event_name == 'push'
name: Trigger package workflows 🚀
uses: ./.github/workflows/__package.yml
with:
packages: '["control-flow", "extraction", "filtering", "integration", "logic", "status"," validation"]'
trigger-docker:
if: (github.event.pull_request && github.event.label.name == '🐳 Dockerize') || github.event_name == 'push'
name: Trigger Docker workflow 🐳
uses: ./.github/workflows/__docker.yml
with:
pr_id: ${{ github.event.number }}
github_ref: ${{ github.ref }}