-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from threshold-network/prod-deployment
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
Showing
2 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
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
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/gcp-storage-bucket-action@v3.1.0 | ||
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/gcp-storage-bucket-action@v3.1.0 | ||
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 |
Validating CODEOWNERS rules …
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.github/workflows/ci.yaml @pdyraga @nkuba @lukasz-zimnoch |