Compare commits
10 commits
1138f695f4
...
0f9e70267e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0f9e70267e | ||
|
|
f8c44999fe | ||
|
|
45e5dd74aa | ||
|
|
eb54e314ff | ||
|
|
d6056cead2 | ||
|
|
be6ee91098 | ||
|
|
1fee6e2c97 | ||
|
|
2fbc15ae84 | ||
|
|
b64e635b71 | ||
|
|
7511cace42 |
3 changed files with 32 additions and 9 deletions
27
.github/workflows/release-pypi.yaml
vendored
27
.github/workflows/release-pypi.yaml
vendored
|
|
@ -12,17 +12,17 @@ permissions:
|
||||||
packages: none
|
packages: none
|
||||||
id-token: write
|
id-token: write
|
||||||
jobs:
|
jobs:
|
||||||
release-krayt:
|
pypi-release-krayt:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
# - uses: waylonwalker/hatch-action@v4
|
- uses: waylonwalker/hatch-action@v4
|
||||||
# with:
|
with:
|
||||||
# before-command: "lint-format"
|
before-command: "lint-format"
|
||||||
# env:
|
env:
|
||||||
# # required for gh release
|
# required for gh release
|
||||||
# GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ github.token }}
|
||||||
#
|
- run: sudo rm -rf dist
|
||||||
- name: Install just
|
- name: Install just
|
||||||
run: |
|
run: |
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/local/bin
|
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/local/bin
|
||||||
|
|
@ -31,6 +31,17 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
curl -LsSf https://astral.sh/uv/0.6.16/install.sh | sh
|
curl -LsSf https://astral.sh/uv/0.6.16/install.sh | sh
|
||||||
shell: bash
|
shell: bash
|
||||||
|
- name: Install hatch
|
||||||
|
run: |
|
||||||
|
uv tool install hatch
|
||||||
|
shell: bash
|
||||||
|
- name: Configure Git
|
||||||
|
run: |
|
||||||
|
git config --global user.name "github-actions[bot]"
|
||||||
|
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||||
|
shell: bash
|
||||||
- name: GitHub Release (just release)
|
- name: GitHub Release (just release)
|
||||||
run: just create-release
|
run: just create-release
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
|
||||||
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -1,3 +1,15 @@
|
||||||
|
## 0.4.3
|
||||||
|
|
||||||
|
- working out binary release process
|
||||||
|
|
||||||
|
## 0.4.2
|
||||||
|
|
||||||
|
- working out binary release process
|
||||||
|
|
||||||
|
## 0.4.1
|
||||||
|
|
||||||
|
- Automated release for both pypi and github
|
||||||
|
|
||||||
## 0.4.0
|
## 0.4.0
|
||||||
|
|
||||||
- create now has --apply to apply the generated manifest to the cluster
|
- create now has --apply to apply the generated manifest to the cluster
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "0.4.0"
|
__version__ = "0.4.3"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue