Skip to content

Commit

Permalink
fix: release missing bazel artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle committed Oct 3, 2024
1 parent 7dae2cf commit 3351384
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/download-artifact@v4
with:
merge-multiple: true
- run: shasum -a 256 aspect* > SHA256.txt
- 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
Expand All @@ -27,4 +27,5 @@ jobs:
body_path: release_notes.txt
files: |
aspect*
bazel*
SHA256.txt
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ After this, you should be able to merge your changes without any conflicts in th

## Releasing

1. At the commit to release from, run `./workspace_status.sh | grep STABLE_ASPECT_CLI_BAZELISK_COMPAT_VERSION`
1. Sync your local `main` branch to the commit to release from.
Run `node ./tools/workspace_status.js | grep STABLE_ASPECT_CLI_BAZELISK_COMPAT_VERSION`
to determine the current release version. This version follows our monorepo versioning scheme minus
the hash so that it is compatible with Bazelisk. See comment in `workspace_status.sh` for more info.

Expand Down

0 comments on commit 3351384

Please sign in to comment.