Skip to content

Commit

Permalink
Fix type in release process (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bencodes committed Nov 2, 2023
1 parent 162c4b1 commit 6c8cbf7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ jobs:
uses: bazel-contrib/.github/.github/workflows/release_ruleset.yaml@v5
with:
prerelease: false
release_files: roboelectric-bazel-*.tar.gz
release_files: robolectric-bazel-*.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/release_prep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ readonly TAG=${GITHUB_REF_NAME}
# The prefix is chosen to match what GitHub generates for source archives.
# This guarantees that users can easily switch from a released artifact to a source archive
# with minimal differences in their code (e.g. strip_prefix remains the same)
readonly PREFIX="roboelectric-bazel-${TAG}"
readonly PREFIX="robolectric-bazel-${TAG}"
readonly ARCHIVE="${PREFIX}.tar.gz"

# NB: configuration for 'git archive' is in /.gitattributes
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
To perform a release, simply tag the commit you wish to release, for example:

```
roboelectric-bazel$ git fetch
roboelectric-bazel$ git tag 1.2.3 origin/main
roboelectric-bazel$ git push origin 1.2.3
robolectric-bazel$ git fetch
robolectric-bazel$ git tag 1.2.3 origin/main
robolectric-bazel$ git push origin 1.2.3
```

0 comments on commit 6c8cbf7

Please sign in to comment.