From 3b4cb5cb8f2292a8cbda2d4745cf34cbab2cbb21 Mon Sep 17 00:00:00 2001 From: PhiBo Date: Tue, 17 Sep 2024 12:26:00 +0200 Subject: [PATCH] *: Updating changelog/Release 0.1.1 (#1) * doc: Updating changelog * ci: Fix build permissions * ci: Fix issue with docker multi arch builds --- .github/workflows/build-and-push.yaml | 2 +- .github/workflows/pypi.yml | 1 - CHANGELOG.md | 18 ++++++++++++++++-- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-push.yaml b/.github/workflows/build-and-push.yaml index 27355d7..8e2a351 100644 --- a/.github/workflows/build-and-push.yaml +++ b/.github/workflows/build-and-push.yaml @@ -63,7 +63,7 @@ jobs: uses: docker/build-push-action@v6 with: context: . - push: true + push: ${{ github.ref == 'refs/heads/main' || github.event_name == 'release' }} platforms: | linux/amd64 linux/arm64/v8 diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index e93df93..c458396 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -4,7 +4,6 @@ name: Publish Python distributions to PyPI and TestPyPI on: - pull_request: push: branches: - main diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ea9451..e44a61d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,21 @@ Changelog ========= -0.1 - 2024-09-16 ----------------- +## unreleased + +## 0.1.1 - 2024-09-17 + +### Changed + +- Publishing images to GitHub Registry +- Pushing new releases to PyPI + +### Fixed + +- GitHub pipelines + +## 0.1.0 - 2024-09-16 + +### Added - Initial PoC release