vibecoded-personal-site/.github/workflows/trigger-build.yml
badbl0cks e245bcbe96
Some checks failed
Build/Deploy / trigger-dev-build (push) Has been cancelled
Build/Deploy / trigger-staging-build (push) Has been cancelled
Build/Deploy / trigger-main-build (push) Has been cancelled
feat: add in copy of updated shared deployment workflows for now until they are
published
2025-08-14 18:42:59 -07:00

30 lines
807 B
YAML

# yaml-language-server: $schema=https://json-schema.org/draft-07/schema#
name: Build/Deploy
on:
workflow_dispatch:
push:
branches: [dev, staging, main]
jobs:
trigger-dev-build:
permissions:
actions: read
contents: read
if: ${{ github.ref == 'refs/heads/dev' }}
uses: badbl0cks/portfolio/.github/workflows/build.yml@dev
secrets: inherit
trigger-staging-build:
permissions:
actions: read
contents: read
if: ${{ github.ref == 'refs/heads/staging' }}
uses: badbl0cks/portfolio/.github/workflows/build.yml@staging
secrets: inherit
trigger-main-build:
permissions:
actions: read
contents: read
if: ${{ github.ref == 'refs/heads/main' }}
uses: badbl0cks/portfolio/.github/workflows/build.yml@main
secrets: inherit