Skip to content
Closed
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
24 changes: 18 additions & 6 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Release Please

on:
workflow_dispatch:
push:
branches:
- main
- release-please-fix

permissions:
contents: write
Expand All @@ -14,12 +15,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

uses: actions/checkout@v4
- uses: google-github-actions/release-please-action@v4
id: release
with:
release-type: python
package-name: qscaler
version-file: pyproject.toml
token: ${{ secrets.GIT_TOKEN }}
token: ${{ secrets.GIT_TOKEN }}
target-branch: release-please-fix
pypi-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build and publish to pypi
uses: JRubics/poetry-publish@v2.1
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}
build_format: "wheel"
poetry_install_options: "--without lint --without test"
repository_name: "testpypi"
repository_url: "https://test.pypi.org/legacy/"
19 changes: 0 additions & 19 deletions .github/workflows/release.yaml

This file was deleted.

23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## [0.0.2](https://github.com/quickube/qscaler-python-sdk/compare/v0.0.1...v0.0.2) (2025-06-02)


### Bug Fixes

* pypi publish ([daf626c](https://github.com/quickube/qscaler-python-sdk/commit/daf626c8dffb6e4dd1082daa3944ff1f4b887a67))

## [0.0.2](https://github.com/quickube/qscaler-python-sdk/compare/v0.0.1...v0.0.2) (2025-06-02)


### Bug Fixes

* action ([d9d3d6f](https://github.com/quickube/qscaler-python-sdk/commit/d9d3d6f1ee7259220d9f66eb0bdef6e1213474fd))
* release ([918c889](https://github.com/quickube/qscaler-python-sdk/commit/918c889d621096282abe3c771a70687a56aebb44))
* release ([92ce69a](https://github.com/quickube/qscaler-python-sdk/commit/92ce69a5131483fd085eae68b2e759c3a3c1dfd2))
* release ([062942f](https://github.com/quickube/qscaler-python-sdk/commit/062942ff3b8aefec6cf80a9daf89e54a81b9432e))


### Miscellaneous Chores

* release 0.0.2 ([59fee40](https://github.com/quickube/qscaler-python-sdk/commit/59fee40dfae5a729cf3897acdac831bc349547d8))
* release 2.0.0 ([6e61a7f](https://github.com/quickube/qscaler-python-sdk/commit/6e61a7fab4cd216b10c11f67f4fa5a5a1b20bf0e))

## [0.0.1](https://github.com/quickube/qscaler-python-sdk/compare/v0.0.1...v0.0.1) (2025-01-06)


Expand Down
Loading