Skip to content

Commit 8f1e5aa

Browse files
committed
Unify module name
1 parent 68045b5 commit 8f1e5aa

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.bcr/metadata.template.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"homepage": "https://github.com/hermeticbuild/cuda_toolkit",
2+
"homepage": "https://github.com/hermeticbuild/cuda-toolkit",
33
"maintainers": [
44
{
55
"name": "Corentin Kerisit",
@@ -13,7 +13,7 @@
1313
}
1414
],
1515
"repository": [
16-
"github:hermeticbuild/cuda_toolkit"
16+
"github:hermeticbuild/cuda-toolkit"
1717
],
1818
"versions": [],
1919
"yanked_versions": {}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
bazel_test_command: true
3737
prerelease: false
3838
release_files: |
39-
cuda_toolkit-*.tar.gz
39+
cuda-toolkit-*.tar.gz
4040
tag_name: ${{ inputs.tag_name || github.ref_name }}
4141
publish:
4242
# Skip BCR publish for prebuilts tags like llvm-* or prebuilts-extras-*.

.github/workflows/release_prep.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ VERSION=${TAG:1}
99
# The prefix is chosen to match what GitHub generates for source archives
1010
# This guarantees that users can easily switch from a released artifact to a source archive
1111
# with minimal differences in their code (e.g. strip_prefix remains the same)
12-
PREFIX="cuda_toolkit-$VERSION"
13-
ARCHIVE="cuda_toolkit-$TAG.tar.gz"
12+
PREFIX="cuda-toolkit-$VERSION"
13+
ARCHIVE="cuda-toolkit-$TAG.tar.gz"
1414

1515
# NB: configuration for 'git archive' is in /.gitattributes
1616
git archive --format=tar --prefix=${PREFIX}/ ${TAG} | gzip > $ARCHIVE

0 commit comments

Comments
 (0)