-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove MODULE.bazel version bump from release process (#231)
It turns out it really doesn't matter what this version is in the repo, so we can simplify our release process a bit by not needing to generate this file, or merge a PR updating it
- Loading branch information
Showing
3 changed files
with
1 addition
and
36 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,18 +18,6 @@ jobs: | |
run: | | ||
set -euo pipefail | ||
git config user.name "Automatic version bump" | ||
git config user.email "[email protected]" | ||
./.github/update-module-version.sh "$TAG" | ||
tmp_branch="$(uuidgen)" | ||
git checkout -b "$tmp_branch" | ||
git add MODULE.bazel | ||
msg="Update MODULE.bazel to $TAG" | ||
git commit -m "$msg" | ||
git push -u origin "$tmp_branch" | ||
gh pr create --title "$msg" --body "" | ||
COPYFILE_DISABLE=1 tar czvf "apple_support.$TAG.tar.gz" ./* | ||
./.github/generate-notes.sh "$TAG" | tee notes.md | ||
gh release create "$TAG" --title "$TAG" --target "$GITHUB_REF_NAME" --notes-file notes.md "apple_support.$TAG.tar.gz" | ||
|
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