Bump version to 0.18.0 (#677) #28
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: Tag new version | |
on: | |
push: | |
branches: [main] | |
paths: | |
- 'databricks_cli/version.py' | |
jobs: | |
tag: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: "3.10" | |
- name: Check if this is a release version | |
id: version | |
env: | |
PYTHONPATH: /home/runner/work/databricks-cli/databricks-cli | |
shell: python | |
run: | | |
from databricks_cli.version import version, is_release_version | |
print("::set-output name=version::" + version) | |
if is_release_version(): | |
print("::set-output name=is_release_version::true") | |
print("Release version: " + version) | |
else: | |
print("::set-output name=is_release_version::false") | |
print("Not a release version: " + version) | |
- name: Create and push tag | |
if: steps.version.outputs.is_release_version == 'true' | |
run: | | |
git tag ${{ steps.version.outputs.version }} | |
git push origin ${{ steps.version.outputs.version }} |