feat: add in copy of updated shared deployment workflows for now until they are
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

published
This commit is contained in:
badblocks 2025-08-14 15:08:23 -07:00
parent bcb7f86b7f
commit e245bcbe96
No known key found for this signature in database
12 changed files with 1113 additions and 0 deletions

30
.github/workflows/trigger-build.yml vendored Normal file
View file

@ -0,0 +1,30 @@
# 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