1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-25 20:53:22 +00:00

switching the order of the checkout and branch check to solve cli release isssue (#3016)

This commit is contained in:
Joseph Flinn
2022-06-30 10:26:35 -07:00
committed by GitHub
parent e51f1551d1
commit af2523aa6f
4 changed files with 12 additions and 12 deletions

View File

@@ -25,6 +25,9 @@ jobs:
outputs:
release-version: ${{ steps.version.outputs.version }}
steps:
- name: Checkout repo
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2
- name: Branch check
if: ${{ github.event.inputs.release_type != 'Dry Run' }}
run: |
@@ -35,9 +38,6 @@ jobs:
exit 1
fi
- name: Checkout repo
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2
- name: Check Release Version
id: version
uses: bitwarden/gh-actions/release-version-check@ea9fab01d76940267b4147cc1c4542431246b9f6