diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-09-06 15:50:41 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-09-06 15:50:41 -0700 |
commit | e94eb8fc5c3cf31de2d93e0b60d7b2d7eecb40c4 (patch) | |
tree | 10cc6966155384af6c92cb9b71ada67fd835c1fd /.github | |
parent | 70f6da9b1ad190a967974fb477db669cbb5c928f (diff) | |
download | sncontinue-e94eb8fc5c3cf31de2d93e0b60d7b2d7eecb40c4.tar.gz sncontinue-e94eb8fc5c3cf31de2d93e0b60d7b2d7eecb40c4.tar.bz2 sncontinue-e94eb8fc5c3cf31de2d93e0b60d7b2d7eecb40c4.zip |
ci: :green_heart: bump poetry version
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yaml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 0c39c56f..e8c69368 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -28,9 +28,24 @@ jobs: - name: Configure Poetry Token run: cd continuedev && poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }} + - name: Bump the version + run: cd continuedev && poetry version patch + - name: Build and publish the package run: cd continuedev && poetry publish --build + - name: Commit changes + run: | + git config --local user.email "action@github.com" + git config --local user.name "GitHub Action" + git commit -am "ci: 🏷 Update PyPI version [skip ci]" + + - name: Push changes + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + branch: ${{ github.ref }} + pyinstaller: strategy: matrix: |