Skip to content

Commit

Permalink
fix the order in which release scripts run (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
friedrichwilken authored Dec 21, 2023
1 parent 5089dc6 commit 3c5988e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
name: Validate release
runs-on: ubuntu-latest
steps:
- name: Verify version follows x.y.z pattern
run: ./.github/scripts/check_version_format.sh ${{ github.event.inputs.version }}

- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Verify version follows x.y.z pattern
run: ./.github/scripts/check_version_format.sh ${{ github.event.inputs.version }}

- name: Verify that the current branch's name starts with 'release-'
run: ./.github/scripts/verify_is_on_release_branch.sh

Expand Down

0 comments on commit 3c5988e

Please sign in to comment.