Skip to content

feat: flag to skip truncation for fast rate calculation without follo… #219

feat: flag to skip truncation for fast rate calculation without follo…

feat: flag to skip truncation for fast rate calculation without follo… #219

Workflow file for this run

name: release-please
on:
workflow_dispatch:
push:
branches: [ main ]
permissions:
contents: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
outputs:
created: ${{ steps.release.outputs.release_created }}
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
release-type: python
- uses: actions/checkout@v4
- name: tag stable versions
if: ${{ steps.release.outputs.release_created }}
run: |
git config user.name github-actions[bot]
git config user.email github-actions[bot]@users.noreply.github.com
git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/google-github-actions/release-please-action.git"
git tag -d stable || true
git push origin :stable || true
git tag -a stable -m "Last Stable Release"
git push origin stable
publish:
needs: release
if: ${{ needs.release.outputs.created }}
permissions:
id-token: write
uses: ./.github/workflows/publish.yml