1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-07 11:03:30 +00:00

Fix workflow formatting (#17382)

This commit is contained in:
Vince Grassia
2025-11-13 21:56:37 -05:00
committed by GitHub
parent d95d86d05e
commit 9a3ba9e05b
5 changed files with 42 additions and 58 deletions

View File

@@ -52,8 +52,7 @@ jobs:
release:
name: Create GitHub Release
runs-on: ubuntu-22.04
needs:
- setup
needs: setup
permissions:
contents: write
steps:
@@ -82,10 +81,10 @@ jobs:
- name: Rename assets
working-directory: apps/web/artifacts
env:
_RELEASE_VERSION: ${{ needs.setup.outputs.release_version }}
RELEASE_VERSION: ${{ needs.setup.outputs.release_version }}
run: |
mv web-*-selfhosted-COMMERCIAL.zip "web-$_RELEASE_VERSION-selfhosted-COMMERCIAL.zip"
mv web-*-selfhosted-open-source.zip "web-$_RELEASE_VERSION-selfhosted-open-source.zip"
mv web-*-selfhosted-COMMERCIAL.zip "web-${RELEASE_VERSION}-selfhosted-COMMERCIAL.zip"
mv web-*-selfhosted-open-source.zip "web-${RELEASE_VERSION}-selfhosted-open-source.zip"
- name: Create release
if: ${{ github.event.inputs.release_type != 'Dry Run' }}