Skip to content

Commit

Permalink
small updates and bump to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tarilabs committed Dec 8, 2024
1 parent b738a37 commit 1962db9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.10'
- name: Install Poetry
run: |
pipx install poetry
Expand All @@ -28,7 +28,7 @@ jobs:
run: |
poetry build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -48,7 +48,7 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -69,12 +69,12 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Sign the dists with Sigstore
uses: sigstore/gh-action-sigstore-python@v2.1.1
uses: sigstore/gh-action-sigstore-python@v3.0.0
with:
inputs: >-
./dist/*.tar.gz
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ oras cp --from-oci-layout ./download:latest quay.io/mmortari/demo20241208:latest
demo

```
podman run -it quay.io/mmortari/demo20241208 /bin/sh
podman run --rm -it quay.io/mmortari/demo20241208 /bin/sh
Trying to pull quay.io/mmortari/demo20241208:latest...
Getting image source signatures
Copying blob sha256:a29b139a2e0d0eb615fd1e2d51475834a404f1e2f440784079c7184bdc241289
Expand All @@ -47,3 +47,7 @@ dr-xr-xr-x 1 root root 63 Dec 8 21:56 ..
-rw-r--r-- 1 501 20 3299 Dec 8 15:37 model.joblib
/ # exit
```

```sh
podman image rm quay.io/mmortari/demo20241208:latest
```
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "olot"
version = "0.1.0"
version = "0.1.1"
description = ""
authors = ["tarilabs <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 1962db9

Please sign in to comment.