1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

Fix branch quotes

This commit is contained in:
Michal Chciński
2022-05-26 13:28:57 +02:00
parent c9ebf8c1ce
commit dfa8f853cd

View File

@@ -629,13 +629,13 @@ jobs:
path: ${{ github.workspace }}/browser-build-artifacts
- name: Extract branch name
if: ${{ contains(github.ref, "hotfix-rc") && github.event_name != 'workflow_run' }}
if: ${{ contains(github.ref, 'hotfix-rc') && github.event_name != 'workflow_run' }}
id: extract_branch
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
- name: Download artifact from hotfix-rc
if: ${{ contains(github.ref, "hotfix-rc") && github.event_name != 'workflow_run' }}
if: ${{ contains(github.ref, 'hotfix-rc') && github.event_name != 'workflow_run' }}
uses: dawidd6/action-download-artifact@b2abf1705491048a2d7074f7d90513044fd25d39 # v2.19.0
with:
workflow: build-browser.yml
@@ -653,7 +653,7 @@ jobs:
path: ${{ github.workspace }}/browser-build-artifacts
- name: Download artifact from master
if: ${{ github.ref != 'refs/heads/rc' && !contains(github.ref, "hotfix-rc") && github.event_name != 'workflow_run' }}
if: ${{ github.ref != 'refs/heads/rc' && !contains(github.ref, 'hotfix-rc') && github.event_name != 'workflow_run' }}
uses: dawidd6/action-download-artifact@b2abf1705491048a2d7074f7d90513044fd25d39 # v2.19.0
with:
workflow: build-browser.yml
@@ -843,13 +843,13 @@ jobs:
path: ${{ github.workspace }}/browser-build-artifacts
- name: Extract branch name
if: ${{ contains(github.ref, "hotfix-rc") && github.event_name != 'workflow_run' }}
if: ${{ contains(github.ref, 'hotfix-rc') && github.event_name != 'workflow_run' }}
id: extract_branch
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
- name: Download artifact from hotfix-rc
if: ${{ contains(github.ref, "hotfix-rc") && github.event_name != 'workflow_run' }}
if: ${{ contains(github.ref, 'hotfix-rc') && github.event_name != 'workflow_run' }}
uses: dawidd6/action-download-artifact@b2abf1705491048a2d7074f7d90513044fd25d39 # v2.19.0
with:
workflow: build-browser.yml
@@ -867,7 +867,7 @@ jobs:
path: ${{ github.workspace }}/browser-build-artifacts
- name: Download artifact from master
if: ${{ github.ref != 'refs/heads/rc' && !contains(github.ref, "hotfix-rc") && github.event_name != 'workflow_run' }}
if: ${{ github.ref != 'refs/heads/rc' && !contains(github.ref, 'hotfix-rc') && github.event_name != 'workflow_run' }}
uses: dawidd6/action-download-artifact@b2abf1705491048a2d7074f7d90513044fd25d39 # v2.19.0
with:
workflow: build-browser.yml