release 0.4.0
This commit is contained in:
parent
225edce32d
commit
17c088526b
4 changed files with 15 additions and 3 deletions
11
.github/workflows/release-pypi.yaml
vendored
11
.github/workflows/release-pypi.yaml
vendored
|
|
@ -22,3 +22,14 @@ jobs:
|
||||||
env:
|
env:
|
||||||
# required for gh release
|
# required for gh release
|
||||||
GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
- name: Install just
|
||||||
|
run: |
|
||||||
|
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to DEST
|
||||||
|
shell: bash
|
||||||
|
- name: Install uv
|
||||||
|
run: |
|
||||||
|
curl -LsSf https://astral.sh/uv/0.6.16/install.sh | sh
|
||||||
|
shell: bash
|
||||||
|
- name: GitHub Release (just release)
|
||||||
|
run: just create-release
|
||||||
|
shell: bash
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
- create now has --apply to apply the generated manifest to the cluster
|
- create now has --apply to apply the generated manifest to the cluster
|
||||||
- generic templates endpoint for cli
|
- generic templates endpoint for cli
|
||||||
|
- better motd for volume mounts
|
||||||
|
|
||||||
## 0.3.0
|
## 0.3.0
|
||||||
|
|
||||||
|
|
|
||||||
4
justfile
4
justfile
|
|
@ -44,8 +44,8 @@ create-archives:
|
||||||
# ./scripts/generate_install_script.py "$VERSION"
|
# ./scripts/generate_install_script.py "$VERSION"
|
||||||
# chmod +x dist/install.sh
|
# chmod +x dist/install.sh
|
||||||
|
|
||||||
# create-release: create-archives
|
create-release: create-tag create-archives
|
||||||
create-release:
|
# create-release:
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
VERSION=$(hatch version)
|
VERSION=$(hatch version)
|
||||||
./scripts/get_release_notes.py "$VERSION" > release_notes.tmp
|
./scripts/get_release_notes.py "$VERSION" > release_notes.tmp
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "0.3.0"
|
__version__ = "0.4.0b0"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue