Add GitHub environments to CD workflows
- cd-apps: uses `production` environment for AGE_SECRET_KEY - cd-infra: uses `infra` environment for AGE_SECRET_KEY Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
c3e80c2dad
commit
9673496211
2 changed files with 3 additions and 0 deletions
2
.github/workflows/cd-apps.yml
vendored
2
.github/workflows/cd-apps.yml
vendored
|
|
@ -17,6 +17,7 @@ jobs:
|
|||
build-images:
|
||||
name: Build & Push Docker Images
|
||||
runs-on: ubuntu-latest
|
||||
environment: production
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
|
|
@ -55,6 +56,7 @@ jobs:
|
|||
name: Deploy Apps
|
||||
needs: [build-images]
|
||||
runs-on: ubuntu-latest
|
||||
environment: production
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue