Merge branch 'master' of github.com:MartinLupa/github-actions-ci-cd #39
This file contains 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: Staging workflow | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
env: | |
CI: true | |
HUSKY: 0 | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check-paths: | |
name: Check modified paths | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
outputs: | |
unified: ${{ steps.paths.outputs.unified }} | |
login: ${{ steps.paths.outputs.login }} | |
dynamic-forms-preview: ${{ steps.paths.outputs.dynamic-forms-preview }} | |
dynamic-forms-form-settings: ${{ steps.paths.outputs.dynamic-forms-form-settings }} | |
dynamic-forms-subscriptions: ${{ steps.paths.outputs.dynamic-forms-subscriptions }} | |
packages: ${{ steps.paths.outputs.packages }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Check paths | |
id: paths | |
uses: ./.github/actions/check-paths | |
unified-web-app-preview-deployment: | |
name: Deploy Unified-web App (Vercel Preview) | |
if: ${{ needs.check-paths.outputs.unified == 'true' || needs.check-paths.outputs.packages == 'true' }} | |
needs: check-paths | |
uses: ./.github/workflows/reusable-vercel-deploy.yml | |
with: | |
app-name: 'Unified-web App' | |
github-environment: 'staging' | |
vercel-environment: 'preview' | |
domains: staging-domain-1.vercel.app | |
secrets: inherit | |
login-app-preview-deployment: | |
name: Deploy Login App (Vercel Preview) | |
if: ${{ needs.check-paths.outputs.login == 'true' || needs.check-paths.outputs.packages == 'true' }} | |
needs: check-paths | |
uses: ./.github/workflows/reusable-vercel-deploy.yml | |
with: | |
app-name: 'Login App' | |
github-environment: 'staging' | |
vercel-environment: 'preview' | |
domains: | | |
other-staging-domain-2.vercel.app | |
other-staging-domain-3.vercel.app | |
secrets: inherit | |
dynamic-forms-preview-staging-deploy: | |
name: Deploy Dynamic Forms Preview (Contentful Staging) | |
if: ${{ needs.check-paths.outputs.dynamic-forms-preview == 'true' }} | |
needs: [check-paths] | |
uses: ./.github/workflows/reusable-contentful-deploy.yml | |
with: | |
app-name: 'Dynamic Forms Preview' | |
app-definition: '' | |
github-environment: 'staging' | |
dynamic-forms-form-settings-staging-deploy: | |
name: Deploy Dynamic Forms Form Settings (Contentful Staging) | |
if: ${{ needs.check-paths.outputs.dynamic-forms-form-settings == 'true' }} | |
needs: [check-paths] | |
uses: ./.github/workflows/reusable-contentful-deploy.yml | |
with: | |
app-name: 'Dynamic Forms Form Settings' | |
app-definition: '' | |
github-environment: 'staging' | |
dynamic-forms-subscriptions-staging-deploy: | |
name: Deploy Dynamic Forms Subscriptions (Contentful Staging) | |
if: ${{ needs.check-paths.outputs.dynamic-forms-subscriptions == 'true' }} | |
needs: [check-paths] | |
uses: ./.github/workflows/reusable-contentful-deploy.yml | |
with: | |
app-name: 'Dynamic Forms Subscriptions' | |
app-definition: '' | |
github-environment: 'staging' | |