Skip to content

Temporary update to release flow #23

Temporary update to release flow

Temporary update to release flow #23

Workflow file for this run

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 -e git+https://github.com/zenml-io/zenml.git@develop#egg=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