Summary
Jobs
init
image-build (templates/adguard.yml)
image-build (templates/apisix.yml)
image-build (templates/bunkerweb.yml)
image-build (templates/code-server.yml)
image-build (templates/debian-test.yml)
image-build (templates/downloadarr.yml)
image-build (templates/gitea.yml)
image-build (templates/gitness.yml)
image-build (templates/grafana.yml)
image-build (templates/homarr.yml)
image-build (templates/infisical.yml)
image-build (templates/ittools.yml)
image-build (templates/jellyfin.yml)
image-build (templates/jellyseerr.yml)
image-build (templates/jenkins-agent.yml)
image-build (templates/jenkins.yml)
image-build (templates/jupyterlab.yml)
image-build (templates/kestra.yml)
image-build (templates/keycloak.yml)
image-build (templates/lidarr.yml)
image-build (templates/logto.yml)
image-build (templates/matomo.yml)
image-build (templates/n8n.yml)
image-build (templates/nextcloud.yml)
image-build (templates/nodered.yml)
image-build (templates/omada.yml)
image-build (templates/onedev.yml)
image-build (templates/paperless-ngx.yml)
image-build (templates/pihole.yml)
image-build (templates/prowlarr.yml)
image-build (templates/radarr.yml)
image-build (templates/readarr.yml)
image-build (templates/semaphore.yml)
image-build (templates/servarr.yml)
image-build (templates/sonarr.yml)
image-build (templates/stackstorm.yml)
image-build (templates/stirling-pdf.yml)
image-build (templates/superset.yml)
image-build (templates/vault.yml)
image-build (templates/vaultwarden.yml)
image-build (templates/whisparr.yml)
image-build (templates/zitadel.yml)
Workflow file for this run
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: Build Trigger
on:
workflow_dispatch:
pull_request:
types:
- opened
- synchronize
- reopened
- closed
branches:
- main
paths:
- ".github/workflows/trigger.yml"
- "./templates/*"
schedule:
- cron: "0 0 */1 * *"
jobs:
init:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: List templates
id: templates-list
run: |
sudo apt-get install -y jq
echo TEMPLATES_LIST="$(ls templates/* | jq -Rsc 'split("\n")[:-1]')" | tee -a $GITHUB_OUTPUT
outputs:
templates_list: ${{steps.templates-list.outputs.TEMPLATES_LIST}}
image-build:
needs: init
strategy:
matrix:
templates: ${{ fromJson(needs.init.outputs.templates_list) }}
uses: ./.github/workflows/builder.yml
with:
config_path: ${{matrix.templates}}
branch_name: ${{github.event.pull_request.base.ref}}
is_merged: ${{github.event.pull_request.merged || github.event_name == 'schedule'}}
secrets: inherit
You can’t perform that action at this time.