Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/actions/with-docker/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,15 @@ inputs:
runs:
using: 'composite'
steps:
- name: 'Get uv release'
id: uv_release
shell: bash
run: |
echo uv_version=$(cat deps/uv_release) >> "${GITHUB_OUTPUT}"
- name: 'Install uv'
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v6
with:
version: 0.7.2
version: ${{ steps.uv_release.outputs.uv_version }}
- name: 'Set up Docker'
shell: bash {0}
env:
Expand All @@ -30,8 +35,11 @@ runs:
USER_ID=1000
GROUP_ID=${USER_ID}

UV_VERSION=$(cat deps/uv_release)

docker build . --tag ${TAG} \
--file .github/workflows/Dockerfile \
--build-arg UV_VERSION=${UV_VERSION} \
--build-arg KMIR_VERSION=${KMIR_VERSION} \
--build-arg USER=${USER} \
--build-arg GROUP=${GROUP} \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
echo "kompass-version=$(cat package/version)" >> $GITHUB_OUTPUT
echo "short-sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

- name: Build Kmir Container
- name: Build Kompass Container
uses: docker/build-push-action@v6
with:
context: .
Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.27
0.1.28
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "kompass"
version = "0.1.27"
version = "0.1.28"
description = "K Semantics for the Solana ecosystem"
requires-python = "~=3.10"
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading