Skip to content

Commit

Permalink
Fix release workflow (#1806)
Browse files Browse the repository at this point in the history
  • Loading branch information
fa9r authored Sep 11, 2023
1 parent bc42f35 commit df95a26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ on:

jobs:

lint-unit-test:
uses: ./.github/workflows/lint-unit-test.yml
setup-and-test:
uses: ./.github/workflows/setup-python-environment.yml
with:
os: "ubuntu-latest"
python-version: "3.8"
secrets: inherit

mlstacks-compatibility-check:
needs: lint-unit-test
needs: setup-and-test
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -38,7 +38,7 @@ jobs:
run: pip check

publish-python-package:
needs: [lint-unit-test, mlstacks-compatibility-check]
needs: [setup-and-test, mlstacks-compatibility-check]
uses: ./.github/workflows/publish_to_pypi.yml
secrets: inherit

Expand Down

0 comments on commit df95a26

Please sign in to comment.