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
19 changes: 14 additions & 5 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- main


permissions:
contents: write
pull-requests: write
Expand All @@ -14,12 +15,20 @@ 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 }}
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"
19 changes: 0 additions & 19 deletions .github/workflows/release.yaml

This file was deleted.

77 changes: 0 additions & 77 deletions CHANGELOG.md

This file was deleted.

Loading