Skip to content

Commit

Permalink
Sign artifacts with Sigstore (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
nfx authored Jan 5, 2024
1 parent d6c6831 commit f91ed68
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ jobs:
run: |
pip install hatch==1.7.0
hatch build
- name: Sign artifacts with Sigstore
uses: sigstore/[email protected]
with:
inputs: |
dist/databricks_*.whl
dist/databricks_*.tar.gz
- name: Draft release
uses: softprops/action-gh-release@v1
Expand Down
3 changes: 0 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,3 @@
* Added `CODEOWNERS` for code governance.
* Added command framework for Databricks CLI launcher frontend ([#10](https://github.com/databrickslabs/blueprint/pull/10)).
* Added ProductInfo unreleased version fallback ([#9](https://github.com/databrickslabs/blueprint/pull/9)).
## 0.0.0

Initial commit
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
Databricks Labs Blueprint
---

Baseline for Databricks Labs projects written in Python. See [Contributing instructions](CONTRIBUTING.md) if you would like to improve this project.
Baseline for Databricks Labs projects written in Python. Sources are validated with `mypy`. See [Contributing instructions](CONTRIBUTING.md) if you would like to improve this project.

- [Installation](#installation)
- [Batteries Included](#batteries-included)
- [Basic Terminal User Interface (TUI) Primitives](#basic-terminal-user-interface-tui-primitives)
- [Simple Text Questions](#simple-text-questions)
Expand Down Expand Up @@ -30,6 +31,14 @@ Baseline for Databricks Labs projects written in Python. See [Contributing instr
- [Starting New Projects](#starting-new-projects)
- [Project Support](#project-support)

# Installation

You can install this project via `pip`:

```
pip install databricks-labs-blueprint
```

# Batteries Included

This library contains a proven set of building blocks, tested in production through [UCX](https://github.com/databrickslabs/ucx) and projects.
Expand Down

0 comments on commit f91ed68

Please sign in to comment.