Skip to content

fix: log the original display name if no parent has a source (#362) #38

fix: log the original display name if no parent has a source (#362)

fix: log the original display name if no parent has a source (#362) #38

Workflow file for this run

# This action cuts a GitHub release whenever a new tag is pushed to the repo.
# See CONTRIBUTING.md for a releasing guide.
name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: bazel test //...
run: bazel --bazelrc=.github/workflows/ci.bazelrc --bazelrc=.bazelrc test //...
- name: Prepare release
run: .github/workflows/release_prep.sh ${{ env.GITHUB_REF_NAME }} > release_notes.txt
- name: Release
uses: softprops/action-gh-release@v1
with:
prerelease: false
# Use GH feature to populate the changelog automatically
generate_release_notes: true
body_path: release_notes.txt
files: rules_jvm-*.tar.gz
fail_on_unmatched_files: true