chore: upgrade gazelle to HEAD (#7184) #124
Workflow file for this run
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: | |
# Allow manual testing by invoking this workflow from the GH web UI | |
workflow_dispatch: | |
push: | |
tags: | |
- '202*.*.*' | |
jobs: | |
build_all: | |
uses: ./.github/workflows/build.yaml | |
release: | |
runs-on: ubuntu-latest | |
needs: build_all | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
merge-multiple: true | |
- run: shasum -a 256 aspect* bazel-* > SHA256.txt | |
- name: Prepare workspace snippet | |
run: .github/workflows/install_snippet.sh > release_notes.txt | |
- name: Create GitHub draft release and upload artifacts | |
uses: softprops/action-gh-release@v2 | |
with: | |
# Use GH feature to populate the changelog automatically | |
generate_release_notes: true | |
body_path: release_notes.txt | |
files: | | |
aspect* | |
bazel-* | |
SHA256.txt |