Prepare release 0.10.0 (#163) #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Package | |
# Triggers the workflow on push of a tag | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
lint-unit-test: | |
uses: ./.github/workflows/lint-unit-test.yml | |
with: | |
os: "ubuntu-latest" | |
python-version: "3.8" | |
secrets: inherit | |
# checks zenml and mlstacks can be installed together in same environment | |
compatibility-check: | |
needs: lint-unit-test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.8" | |
- name: Install current package as editable | |
run: pip install -e . | |
- name: Install zenml package | |
run: pip install zenml | |
- name: Check for broken dependencies | |
run: pip check | |
publish-python-package: | |
needs: [lint-unit-test, compatibility-check] | |
uses: ./.github/workflows/publish-pypi-package.yml | |
secrets: inherit |