[DEV-1497] Fix homepage webinar banner visibility #502
Workflow file for this run
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: Deploy Website | |
on: | |
pull_request: | |
types: | |
- closed # Trigger when the PR is closed | |
branches: | |
- 'main' # Target branch is main | |
workflow_dispatch: | |
inputs: | |
environment: | |
description: 'The environment used as target' | |
type: choice | |
required: true | |
default: dev | |
options: | |
- dev | |
- prod | |
# Allows external webhook trigger | |
repository_dispatch: | |
types: | |
- webhook | |
# These permissions are needed to interact with GitHub's OIDC Token endpoint. | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
cd_deploy: | |
name: Deploy to S3 (on ${{ matrix.environment }}) | |
# Trigger when the PR is merged or on a webhook (e.g. trigger deploy from CMS) | |
if: (github.event_name == 'pull_request' && github.event.pull_request.merged == true) || github.event_name == 'repository_dispatch' | |
runs-on: 'ubuntu-latest' | |
strategy: | |
matrix: | |
environment: [ 'dev' ] | |
fail-fast: false # Do not cancel any other jobs in the matrix, if a single job fails | |
environment: ${{ matrix.environment }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | |
- name: Deploy website | |
uses: ./.github/actions/deploy | |
with: | |
environment: ${{ matrix.environment }} | |
path_to_gitbook_docs: ${{ github.workspace }}/apps/nextjs-website/docs | |
cookie_domain_script: ${{ secrets.COOKIE_DOMAIN_SCRIPT }} | |
allow_crawler: ${{ vars.ALLOW_CRAWLER }} | |
iam_role: ${{ secrets.DEPLOY_IAM_ROLE }} | |
bucket: ${{ vars.S3_BUCKET_NAME }} | |
cloudfront_distribution_id: ${{ vars.CLOUDFRONT_DISTRIBUTION_ID }} | |
cognito_user_pool_id: ${{ secrets.NEXT_PUBLIC_COGNITO_USER_POOL_ID }} | |
cognito_identity_pool_id: ${{ secrets.NEXT_PUBLIC_COGNITO_IDENTITY_POOL_ID }} | |
cognito_app_client_id: ${{ secrets.NEXT_PUBLIC_COGNITO_USER_POOL_WEB_CLIENT_ID }} | |
strapi_endpoint: ${{ vars.STRAPI_ENDPOINT }} | |
strapi_api_token: ${{ secrets.STRAPI_API_TOKEN }} | |
fetch_from_strapi: ${{ vars.FETCH_FROM_STRAPI }} | |
manual_deploy: | |
name: Deploy to S3 (manual on ${{ inputs.environment }}) | |
if: github.event_name == 'workflow_dispatch' | |
runs-on: 'ubuntu-latest' | |
environment: ${{ inputs.environment }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | |
- name: Deploy website | |
uses: ./.github/actions/deploy | |
with: | |
environment: ${{ inputs.environment }} | |
path_to_gitbook_docs: ${{ github.workspace }}/apps/nextjs-website/docs | |
cookie_domain_script: ${{ secrets.COOKIE_DOMAIN_SCRIPT }} | |
allow_crawler: ${{ vars.ALLOW_CRAWLER }} | |
iam_role: ${{ secrets.DEPLOY_IAM_ROLE }} | |
bucket: ${{ vars.S3_BUCKET_NAME }} | |
cloudfront_distribution_id: ${{ vars.CLOUDFRONT_DISTRIBUTION_ID }} | |
cognito_user_pool_id: ${{ secrets.NEXT_PUBLIC_COGNITO_USER_POOL_ID }} | |
cognito_identity_pool_id: ${{ secrets.NEXT_PUBLIC_COGNITO_IDENTITY_POOL_ID }} | |
cognito_app_client_id: ${{ secrets.NEXT_PUBLIC_COGNITO_USER_POOL_WEB_CLIENT_ID }} | |
strapi_endpoint: ${{ vars.STRAPI_ENDPOINT }} | |
strapi_api_token: ${{ secrets.STRAPI_API_TOKEN }} | |
fetch_from_strapi: ${{ vars.FETCH_FROM_STRAPI }} |