1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-04 20:50:21 -05:00

Update QA Deploy workflow with fix for zip archive (#1612)

This commit is contained in:
Vince Grassia 2021-09-30 12:12:42 -04:00 committed by GitHub
parent 82e9179ee1
commit 55fa4a5f63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 1 deletions

View File

@ -167,6 +167,7 @@ jobs:
pwd
ls -atlh ../../../
# This isn't using the Zip archive created from the last step.
- name: Upload service artifact
uses: actions/upload-artifact@ee69f02b3dfdecd58bb31b4d133da38ba6fe3700
with:

View File

@ -86,9 +86,13 @@ jobs:
echo "NAME_LOWER: $NAME_LOWER"
echo "::set-output name=name_lower::$NAME_LOWER"
BRANCH_NAME=$(echo "{{ github.ref }}" | awk '{split($0, a, "/"); print a[3]}')
BRANCH_NAME=$(echo "$GITHUB_REF" | awk '{split($0, a, "/"); print a[3]}')
echo "GITHUB_REF: $GITHUB_REF"
echo "BRANCH_NAME: $BRANCH_NAME"
echo "::set-output name=branch_name::$BRANCH_NAME"
mkdir publish
- name: Download latest ${{ matrix.name }} asset from ${{ env.branch_name }}
uses: bitwarden/gh-actions/download-artifacts@23433be15ed6fd046ce12b6889c5184a8d9c8783
env:
@ -98,6 +102,17 @@ jobs:
workflow_conclusion: success
branch: ${{ env.branch_name }}
artifacts: ${{ matrix.name }}.zip
path: publish
- name: Zip extracted artifact
run: |
cd publish
zip -r ${{ matrix.name }}.zip .
mv ${{ matrix.name }}.zip ../
cd ..
pwd
ls -atlh
- name: Login to Azure
uses: Azure/login@77f1b2e3fb80c0e8645114159d17008b8a2e475a