Skip to content

Fix strip_prefix, update README and release notes (#9) #4

Fix strip_prefix, update README and release notes (#9)

Fix strip_prefix, update README and release notes (#9) #4

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*.*.*'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test
working-directory: examples
run: bazelisk build //... && bazelisk test //...
- name: Build release artifacts and prepare release notes
run: |
.github/workflows/release_prep.sh ${{ env.GITHUB_REF_NAME }} > release_notes.txt
- name: Release
# Corresponds to the v2.0.5 tag.
uses: softprops/action-gh-release@69320dbe05506a9a39fc8ae11030b214ec2d1f87
with:
# Use GH feature to populate the changelog automatically
generate_release_notes: true
body_path: release_notes.txt
fail_on_unmatched_files: true
files: bazel_env.bzl-*.tar.gz