add run-name for releases to include their workflow trigger (#3996)
* add run-name for releases to include their workflow trigger * add edit for linter error * Update .github/workflows/release-web.yml Co-authored-by: Vince Grassia <593223+vgrassia@users.noreply.github.com> Co-authored-by: Vince Grassia <593223+vgrassia@users.noreply.github.com>
This commit is contained in:
parent
7141f9f175
commit
0443c9acaa
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
name: Release Browser
|
||||
run-name: Release Browser ${{ inputs.release_type }}
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
name: Release CLI
|
||||
run-name: Release CLI ${{ inputs.release_type }}
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
name: Release Desktop
|
||||
run-name: Release Desktop ${{ inputs.release_type }}
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
name: Release Web
|
||||
run-name: Release Web ${{ inputs.release_type }}
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -95,8 +96,7 @@ jobs:
|
|||
env:
|
||||
DOCKER_CONTENT_TRUST: 1
|
||||
DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE: ${{ steps.setup-dct.outputs.dct-delegate-repo-passphrase }}
|
||||
run: |
|
||||
docker push bitwarden/web:$_RELEASE_VERSION
|
||||
run: docker push bitwarden/web:$_RELEASE_VERSION
|
||||
|
||||
- name: Log out of Docker and disable Docker Notary
|
||||
run: |
|
||||
|
|
Loading…
Reference in New Issue