Skip to content

chore: bump bazel version -> 7.2.1 #9

chore: bump bazel version -> 7.2.1

chore: bump bazel version -> 7.2.1 #9

Workflow file for this run

name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./scripts/release/build.sh
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
retention-days: 1
release:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- run: ./scripts/release/notes.sh
- uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
files: |
dist/sha_*
dist/templ_*
dist/*.tar.gz
dist/*.tar.gz.sha384
body_path: dist/release_notes.md
fail_on_unmatched_files: true