Fix Docker image name (#41)

We want to use "-" not "_":

```diff
-ghcr.io/enactic/openarm_can-package
+ghcr.io/enactic/openarm-can-package
```
This commit is contained in:
Sutou Kouhei 2025-10-02 18:36:05 +09:00 committed by GitHub
parent f00de5ba9a
commit 514e3d6d62
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -63,7 +63,7 @@ class OpenArmCANPackageTask < PackageTask
end
def docker_image(os, architecture)
"ghcr.io/#{github_repository.gsub(/"_"/, "-")}-package:#{super}"
"ghcr.io/#{github_repository.gsub("_", "-")}-package:#{super}"
end
end