Bump rattler-build to v0.27.0 (#46) #37
This file contains 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: write | |
# To release a new version, update the version in `project.toml` and push to main. | |
# This will create a draft release with the changelog and push a 'vx' tag that points to the new release as well as 'vx.y.z'. | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: quantco/ui-actions/version-metadata@v1 | |
id: version-metadata | |
with: | |
file: ./project.toml | |
token: ${{ secrets.GITHUB_TOKEN }} | |
version-extraction-override: 'regex:version = "(.*)"' | |
- run: .github/scripts/release.sh | |
if: steps.version-metadata.outputs.changed == 'true' | |
env: | |
TAG_NAME: v${{ steps.version-metadata.outputs.newVersion }} | |
- name: Create release | |
if: steps.version-metadata.outputs.changed == 'true' | |
uses: softprops/action-gh-release@v2 | |
with: | |
generate_release_notes: true | |
tag_name: v${{ steps.version-metadata.outputs.newVersion }} |