2022-06-08 21:32:20 +02:00
|
|
|
---
|
|
|
|
name: QA - Web Release
|
|
|
|
|
|
|
|
on:
|
2022-09-22 17:46:17 +02:00
|
|
|
workflow_dispatch: {}
|
2022-06-08 21:32:20 +02:00
|
|
|
|
|
|
|
jobs:
|
2022-07-13 15:45:52 +02:00
|
|
|
cfpages-deploy:
|
|
|
|
name: Deploy Web Vault to QA CloudFlare Pages branch
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
2022-07-25 23:20:17 +02:00
|
|
|
- name: Create GitHub deployment
|
|
|
|
uses: chrnorm/deployment-action@1b599fe41a0ef1f95191e7f2eec4743f2d7dfc48
|
|
|
|
id: deployment
|
|
|
|
with:
|
|
|
|
token: '${{ secrets.GITHUB_TOKEN }}'
|
2022-08-08 19:21:49 +02:00
|
|
|
initial-status: 'in_progress'
|
2022-07-25 23:20:17 +02:00
|
|
|
environment-url: http://vault.qa.bitwarden.pw
|
|
|
|
environment: 'Web Vault - QA'
|
|
|
|
description: 'Deployment from branch ${{ github.ref_name }}'
|
2022-08-25 10:02:13 +02:00
|
|
|
|
2022-07-13 15:45:52 +02:00
|
|
|
- name: Checkout Repo
|
|
|
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2
|
|
|
|
|
|
|
|
- name: Download latest cloud asset
|
2022-08-25 10:02:13 +02:00
|
|
|
uses: bitwarden/gh-actions/download-artifacts@850faad0cf6c02a8c0dc46eddde2363fbd6c373a
|
2022-07-13 15:45:52 +02:00
|
|
|
with:
|
|
|
|
workflow: build-web.yml
|
2022-10-13 19:54:26 +02:00
|
|
|
path: apps/web
|
2022-07-13 15:45:52 +02:00
|
|
|
workflow_conclusion: success
|
|
|
|
branch: ${{ github.ref_name }}
|
2022-09-19 22:38:19 +02:00
|
|
|
artifacts: web-*-cloud-QA.zip
|
2022-10-13 19:54:26 +02:00
|
|
|
|
|
|
|
- name: Unzip cloud asset
|
|
|
|
working-directory: apps/web
|
|
|
|
run: unzip web-*-cloud-QA.zip
|
2022-07-13 15:45:52 +02:00
|
|
|
|
|
|
|
- name: Checkout Repo
|
|
|
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2
|
|
|
|
with:
|
|
|
|
ref: cf-pages-qa
|
|
|
|
path: deployment
|
|
|
|
|
|
|
|
- name: Setup git config
|
|
|
|
run: |
|
|
|
|
git config --global user.name "GitHub Action Bot"
|
|
|
|
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
|
|
git config --global url."https://github.com/".insteadOf ssh://git@github.com/
|
|
|
|
git config --global url."https://".insteadOf ssh://
|
|
|
|
|
|
|
|
- name: Deploy CloudFlare Pages
|
|
|
|
run: |
|
|
|
|
rm -rf ./*
|
|
|
|
cp -R ../apps/web/build/* .
|
|
|
|
working-directory: deployment
|
|
|
|
|
|
|
|
- name: Push new ver to cf-pages-qa
|
|
|
|
run: |
|
|
|
|
if [ -n "$(git status --porcelain)" ]; then
|
|
|
|
git add .
|
|
|
|
git commit -m "Deploy ${{ github.ref_name }} to QA Cloudflare pages"
|
|
|
|
git push -u origin cf-pages-qa
|
|
|
|
else
|
|
|
|
echo "No changes to commit!";
|
|
|
|
fi
|
|
|
|
working-directory: deployment
|
2022-07-25 23:20:17 +02:00
|
|
|
|
|
|
|
- name: Update deployment status to Success
|
2022-08-08 19:21:49 +02:00
|
|
|
if: ${{ success() }}
|
2022-07-25 23:20:17 +02:00
|
|
|
uses: chrnorm/deployment-status@07b3930847f65e71c9c6802ff5a402f6dfb46b86
|
|
|
|
with:
|
|
|
|
token: '${{ secrets.GITHUB_TOKEN }}'
|
|
|
|
environment-url: http://vault.qa.bitwarden.pw
|
|
|
|
state: 'success'
|
|
|
|
deployment-id: ${{ steps.deployment.outputs.deployment_id }}
|
|
|
|
|
|
|
|
- name: Update deployment status to Failure
|
2022-08-08 19:21:49 +02:00
|
|
|
if: ${{ failure() }}
|
2022-07-25 23:20:17 +02:00
|
|
|
uses: chrnorm/deployment-status@07b3930847f65e71c9c6802ff5a402f6dfb46b86
|
|
|
|
with:
|
|
|
|
token: '${{ secrets.GITHUB_TOKEN }}'
|
|
|
|
environment-url: http://vault.qa.bitwarden.pw
|
|
|
|
state: 'failure'
|
|
|
|
deployment-id: ${{ steps.deployment.outputs.deployment_id }}
|