diff --git a/.github/workflows/release-pypi.yaml b/.github/workflows/release-pypi.yaml index bd6c6ab..162de46 100644 --- a/.github/workflows/release-pypi.yaml +++ b/.github/workflows/release-pypi.yaml @@ -22,3 +22,14 @@ jobs: env: # required for gh release 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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 075d211..e6265dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ - create now has --apply to apply the generated manifest to the cluster - generic templates endpoint for cli +- better motd for volume mounts ## 0.3.0 diff --git a/justfile b/justfile index 49279c2..5e9b035 100644 --- a/justfile +++ b/justfile @@ -44,8 +44,8 @@ create-archives: # ./scripts/generate_install_script.py "$VERSION" # chmod +x dist/install.sh -# create-release: create-archives -create-release: +create-release: create-tag create-archives +# create-release: #!/usr/bin/env bash VERSION=$(hatch version) ./scripts/get_release_notes.py "$VERSION" > release_notes.tmp diff --git a/krayt/__about__.py b/krayt/__about__.py index 493f741..dab8f5a 100644 --- a/krayt/__about__.py +++ b/krayt/__about__.py @@ -1 +1 @@ -__version__ = "0.3.0" +__version__ = "0.4.0b0"