chore: upgrade aspect-gazelle to 8e32503a9ac1 (#265) #10
Workflow file for this run
  
    
      This file contains hidden or 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 |