fix(rf3): fix issues with 5I09 due to chain breaks and add associated… #12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| concurrency: release | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.ref_name }} | |
| fetch-depth: 0 | |
| fetch-tags: true | |
| token: ${{ secrets.RELEASE_TOKEN }} | |
| - run: git reset --hard ${{ github.sha }} | |
| - name: Semantic Release | |
| id: release | |
| uses: python-semantic-release/python-semantic-release@v10.5.3 | |
| with: | |
| github_token: ${{ secrets.RELEASE_TOKEN }} | |
| git_committer_name: "github-actions" | |
| git_committer_email: "actions@users.noreply.github.com" | |
| - name: Publish to GitHub Releases | |
| if: steps.release.outputs.released == 'true' | |
| uses: python-semantic-release/publish-action@v10.5.3 | |
| with: | |
| github_token: ${{ secrets.RELEASE_TOKEN }} | |
| tag: ${{ steps.release.outputs.tag }} |