Update GitHub Actions workflow to trigger prod deploys and build vers… #3
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 to GCS Prod | |
on: | |
push: | |
tags: | |
- "20*" | |
workflow_dispatch: | |
jobs: | |
test-website: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Test current build | |
run: yarn run test-ci | |
continue-on-error: true | |
deploy-prod: | |
runs-on: ubuntu-latest | |
needs: test-website | |
if: ${{ success() }} | |
environment: prod | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
- name: Set up Google Cloud SDK | |
uses: google-github-actions/auth@v2 | |
with: | |
credentials_json: ${{ secrets.GCP_SA_KEY }} | |
- name: Set up gcloud | |
uses: google-github-actions/setup-gcloud@v2 | |
- name: Build the website | |
run: | | |
yarn install --immutable | |
yarn build:production | |
- name: Build version.json file | |
run: | | |
if [ -e version.json ]; then | |
echo "version.json exists, skipping build" | |
else | |
echo "version.json does not exist, running build-version-json.sh" | |
bash ./.utils/build-version-json.sh | |
fi | |
- name: Deploy website to prod | |
run: | | |
sh ./.utils/gcs-deploy.sh ${{ vars.EXTENSIONWORKSHOP_BUCKET_PROD }} |