Skip to content

fix: replaced cluster workspace URL with dynamic URL that changes wit… #4

fix: replaced cluster workspace URL with dynamic URL that changes wit…

fix: replaced cluster workspace URL with dynamic URL that changes wit… #4

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- "*.*.*"
jobs:
publish:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/dask-databricks
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build package
run: pipx install hatch && hatch build
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1