Release job #76
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
| # ============== WARNING ============================================================================== | |
| # File is managed by copier template: gh:LabAutomationAndScreening/copier-base-template.git | |
| # See .config/.copier-managed-files.json for details. | |
| # | |
| # You are welcome to make changes to this file in your repo if they are custom to your project, | |
| # but if the change should be shared with other projects, please backport it to the template repo. | |
| # ===================================================================================================== | |
| name: Tag on Merge to Main | |
| on: | |
| pull_request: | |
| types: | |
| - closed | |
| branches: | |
| - main | |
| jobs: | |
| create-tag: | |
| if: github.event.pull_request.merged == true | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 2 | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| with: | |
| ref: ${{ github.event.pull_request.merge_commit_sha }} | |
| fetch-depth: '0' | |
| persist-credentials: false | |
| - name: Bump version and push tag | |
| uses: nickkostov/github-tag-action@b3aa34b4ac9c7843ee609ba5d0b0a50b962647b9 # v1.3.0 # a fork of https://github.com/mathieudutour/github-tag-action, which is still on Node 20 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |