Files
noahspannbauer a4778d29be
All checks were successful
Pull Request / changes (pull_request) Successful in 22s
Pull Request / build-and-test (pull_request) Has been skipped
Pull Request / terraform-plan (pull_request) Has been skipped
adding infisical action to workflows
2026-07-13 11:09:06 -05:00

33 lines
672 B
YAML

name: Main
on:
push:
branches:
- main
jobs:
changes:
uses: ./.gitea/workflows/changes.yaml
build-and-test:
if: ${{ needs.changes.outputs.api == 'true' || needs.changes.outputs.client == 'true' }}
name: build-and-test
needs:
- changes
uses: ./.gitea/workflows/build_and_test.yaml
with:
environment_name: test
version_number: ${{ github.run_id }}
secrets: inherit
deploy:
name: deploy
needs:
- changes
- build-and-test
uses: ./.gitea/workflows/deploy.yaml
with:
app_name: flying
environment_name: test
version_number: ${{ github.run_id }}
secrets: inherit