Skip to content

Commit

Permalink
Spaces are no allowed
Browse files Browse the repository at this point in the history
  • Loading branch information
Redmar-van-den-Berg committed Oct 16, 2024
1 parent 4368d39 commit 6374fe0
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
check version:
check_version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -15,14 +15,17 @@ jobs:
- name: Check release version is set correctly in every file
run: python3 utilities/check-version.py ${RELEASE_VERSION}

run tests:
run_tests:
uses: ./.github/workflows/ci.yml
needs: check version
needs:
- check_version

package:
name: Package source files, excluding the pytest.ini and git files
runs-on: ubuntu-latest
needs: run tests
needs:
- check_version
- run_tests

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -53,8 +56,8 @@ jobs:
release:
name: Create a release out of the tar archive
needs:
- version
- run tests
- check_version
- run_tests
- package
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 6374fe0

Please sign in to comment.