Skip to content

Commit

Permalink
Merge pull request #8 from threshold-network/prod-deployment
Browse files Browse the repository at this point in the history
Automatic prod deployments

This PR adds a GH workflow that deploys the preview to `preview.threshold.network` on every pull request that targets to `main` branch and deploys website to `threshold.network` on push to `main` branch.
  • Loading branch information
nkuba authored Feb 17, 2022
2 parents c424e42 + ada0eb1 commit a89dabf
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 0 deletions.
96 changes: 96 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
name: Thrershold Website CI

on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: "16"
cache: "yarn"

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Build preview
if: github.event_name == 'pull_request'
run: yarn build
env:
PUBLIC_URL: /${{ github.head_ref }}

- name: Build
if: github.event_name == 'push'
run: yarn build
env:
PUBLIC_URL: /

- uses: actions/upload-artifact@v2
with:
name: build
path: build

deploy-preview:
name: Deploy preview
needs: build
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: actions/download-artifact@v2

- name: Deploy PR to GCP
uses: thesis/[email protected]
with:
service-key: ${{ secrets.PROD_PREVIEW_UPLOADER_SERVICE_KEY_JSON_BASE64 }}
project: ${{ secrets.PROD_PREVIEW_GOOGLE_PROJECT_ID }}
bucket-name: preview.threshold.network
bucket-path: ${{ github.head_ref }}
build-folder: build

- name: Post preview URL to PR
uses: actions/github-script@v5
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Preview uploaded to https://preview.threshold.network/${{ github.head_ref }}/index.html.'
})
deploy:
name: Deploy
needs: build
if: github.event_name == 'push'
# production environment is protected, it requires an approval before execution.
environment:
name: prod
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: actions/download-artifact@v2

- name: Deploy build to GCP
uses: thesis/[email protected]
with:
service-key: ${{ secrets.PROD_UPLOADER_SERVICE_KEY_JSON_BASE64 }}
project: ${{ secrets.PROD_GOOGLE_PROJECT_ID }}
bucket-name: threshold.network
build-folder: build
set-website: true
home-page-path: index.html
error-page-path: index.html
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.github/workflows/ci.yaml @pdyraga @nkuba @lukasz-zimnoch

0 comments on commit a89dabf

Please sign in to comment.