1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

ENG-71 - Updated release workflows with cleanup recommended by Vince (#3224)

* Updated release jobs to include fixes that Vince recommended from the mobile repo

* Updated the workflows with the fixes
that Vince recommended from mobile.

* Fix linter errors

Co-authored-by: Todd Martin <>
Co-authored-by: Michal Checinski <michal.checinski@outlook.com>
This commit is contained in:
Todd Martin
2022-08-08 13:21:49 -04:00
committed by GitHub
parent 1a49117d8a
commit 56ce85c69c
6 changed files with 50 additions and 41 deletions

View File

@@ -77,6 +77,7 @@ jobs:
id: deployment
with:
token: '${{ secrets.GITHUB_TOKEN }}'
initial-status: 'in_progress'
environment-url: http://vault.qa.bitwarden.pw
environment: 'Web Vault - QA'
description: 'Deployment from branch ${{ github.ref_name }}'
@@ -137,7 +138,7 @@ jobs:
working-directory: deployment
- name: Update deployment status to Success
if: success()
if: ${{ success() }}
uses: chrnorm/deployment-status@07b3930847f65e71c9c6802ff5a402f6dfb46b86
with:
token: '${{ secrets.GITHUB_TOKEN }}'
@@ -146,7 +147,7 @@ jobs:
deployment-id: ${{ steps.deployment.outputs.deployment_id }}
- name: Update deployment status to Failure
if: failure()
if: ${{ failure() }}
uses: chrnorm/deployment-status@07b3930847f65e71c9c6802ff5a402f6dfb46b86
with:
token: '${{ secrets.GITHUB_TOKEN }}'