fix(deps): update sanity packages (#1283) #1681
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: App CD | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- Dockerfile | |
- apps/** | |
- packages/** | |
- .github/workflows/build-push-image.yml | |
- .github/workflows/cd.yml | |
- pnpm-lock.yaml | |
- package.json | |
- tsconfig.json | |
- .storybook | |
permissions: | |
contents: read | |
id-token: write | |
packages: read | |
jobs: | |
docker: | |
name: Build and push image | |
uses: ./.github/workflows/build-push-image.yml | |
secrets: inherit | |
deploy_prod: | |
if: contains(github.head_ref, 'main') || contains(github.ref_name, 'main') | |
name: Deploy to PROD | |
uses: ./.github/workflows/deploy-container-app.yml | |
needs: docker | |
with: | |
environment: prod-grunnmuren | |
app_environment: prod | |
dktp-config-directory: ./apps/docs/dktp | |
image-tag: ${{ github.sha }} |