refactor(sdk): disable recurrent development session notifications (#β¦ #1303
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: Website | |
defaults: | |
run: | |
working-directory: website | |
concurrency: | |
group: website-${{ github.event_name }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
inputs: | |
deploy: | |
description: What environment should be deployed | |
type: choice | |
default: no-deploy | |
options: | |
- no-deploy | |
- staging | |
- production | |
pull_request: | |
paths: | |
- .github/actions/setup-google-cloud/** | |
- .github/actions/setup-website/** | |
- .github/workflows/website.yml | |
- website/** | |
- packages/snack-content/** | |
- packages/snack-sdk/** | |
- .eslint* | |
- .prettier* | |
- yarn.lock | |
- turbo.json | |
push: | |
branches: [main] | |
paths: | |
- .github/actions/setup-google-cloud/** | |
- .github/actions/setup-website/** | |
- .github/workflows/website.yml | |
- website/** | |
- packages/snack-content/** | |
- packages/snack-sdk/** | |
- .eslint* | |
- .prettier* | |
- yarn.lock | |
- turbo.json | |
jobs: | |
review: | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Setup repository | |
uses: actions/checkout@v3 | |
- name: π Setup website | |
uses: ./.github/actions/setup-website | |
- name: π¨ Lint website | |
run: yarn lint --max-warnings 0 | |
- name: π§ͺ Unit test website | |
run: yarn test --ci --maxWorkers 1 | |
build: | |
if: ${{ github.event_name == 'pull_request' }} | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- name: π Setup repository | |
uses: actions/checkout@v3 | |
- name: π Setup Google Cloud SDK | |
uses: ./.github/actions/setup-google-cloud | |
with: | |
auth: true | |
- name: π Build website | |
run: skaffold build --filename website/skaffold.yaml --file-output website/build.json | |
working-directory: ./ | |
check-config: | |
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == 'expo/snack' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Setup repository | |
uses: actions/checkout@v3 | |
- name: π Setup Google Cloud SDK | |
uses: ./.github/actions/setup-google-cloud | |
- name: Check staging config | |
run: kustomize build deploy/staging | |
- name: Check production config | |
run: kustomize build deploy/production | |
deploy-staging: | |
if: ${{ (github.event.inputs.deploy == 'staging') || (github.event_name == 'push' && github.ref == 'refs/heads/main') }} | |
needs: review | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
environment: | |
name: website-staging | |
url: https://staging-snack.expo.dev | |
steps: | |
- name: π Setup repository | |
uses: actions/checkout@v3 | |
- name: π Setup Google Cloud SDK | |
uses: ./.github/actions/setup-google-cloud | |
with: | |
auth: true | |
- name: π Build website | |
run: skaffold build --filename website/skaffold.yaml --file-output website/build.json | |
working-directory: ./ | |
env: | |
SKAFFOLD_PUSH_IMAGE: 'true' | |
- name: π Add change cause | |
run: kustomize edit add annotation kubernetes.io/change-cause:"Github Actions deploying $GITHUB_SHA at $(date)" | |
working-directory: website/deploy/staging | |
- name: π Deploy website | |
run: skaffold deploy --filename website/skaffold.yaml --status-check --build-artifacts website/build.json | |
working-directory: ./ | |
env: | |
SKAFFOLD_PUSH_IMAGE: 'true' | |
- name: π¬ Notify Slack | |
uses: 8398a7/action-slack@v3 | |
if: always() | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_SNACK }} | |
with: | |
channel: '#snack' | |
status: ${{ job.status }} | |
author_name: Deploy Website to Staging | |
fields: message,commit,author,job,took | |
deploy-production: | |
if: ${{ github.event.inputs.deploy == 'production' && github.ref == 'refs/heads/main' }} | |
needs: review | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
environment: | |
name: website-production | |
url: https://snack.expo.dev | |
steps: | |
- name: π Setup repository | |
uses: actions/checkout@v3 | |
- name: π Setup Google Cloud SDK | |
uses: ./.github/actions/setup-google-cloud | |
with: | |
auth: true | |
- name: π Build website | |
run: skaffold build --filename website/skaffold.yaml --file-output website/build.json | |
working-directory: ./ | |
env: | |
ENVIRONMENT: production | |
SKAFFOLD_PUSH_IMAGE: 'true' | |
- name: π Add change cause | |
run: kustomize edit add annotation kubernetes.io/change-cause:"Github Actions deploying $GITHUB_SHA at $(date)" | |
working-directory: website/deploy/production | |
- name: π Deploy website | |
run: skaffold deploy --filename website/skaffold.yaml --status-check --build-artifacts website/build.json | |
working-directory: ./ | |
env: | |
ENVIRONMENT: production | |
SKAFFOLD_PUSH_IMAGE: 'true' | |
- name: π¬ Notify Slack | |
uses: 8398a7/action-slack@v3 | |
if: ${{ always() }} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_SNACK }} | |
with: | |
channel: '#snack' | |
status: ${{ job.status }} | |
author_name: Deploy Website to Production | |
fields: message,commit,author,job,took |