Add Hoid identity and theater mask avatar 🎭
This commit is contained in:
parent
4c0199e71b
commit
ba43da9541
25 changed files with 1622 additions and 62 deletions
30
drafts/ci-templates/examples/project-workflow-simple.yaml
Normal file
30
drafts/ci-templates/examples/project-workflow-simple.yaml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# Example: Simple deployment (push to main → deploy to stage)
|
||||
# Place in your project's .forgejo/workflows/deploy.yaml
|
||||
|
||||
name: Deploy
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
- 'renovate.json'
|
||||
|
||||
jobs:
|
||||
deploy-stage:
|
||||
uses: Cloonar/ci-templates/.forgejo/workflows/typo3-deploy.yaml@main
|
||||
with:
|
||||
target: stage
|
||||
php_version: '8.3'
|
||||
secrets:
|
||||
deploy_key: ${{ secrets.STAGE_KEY }}
|
||||
|
||||
# Optional: Manual production deploy
|
||||
deploy-production:
|
||||
if: github.event_name == 'workflow_dispatch'
|
||||
uses: Cloonar/ci-templates/.forgejo/workflows/typo3-deploy.yaml@main
|
||||
with:
|
||||
target: production
|
||||
php_version: '8.3'
|
||||
secrets:
|
||||
deploy_key: ${{ secrets.PROD_KEY }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue