We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 836fef4 commit 4cb1eecCopy full SHA for 4cb1eec
.github/workflows/IntegrationTest.yml
@@ -50,14 +50,12 @@ jobs:
50
end
51
try
52
repo_and_subdir = split("${{ inputs.repo }}", ':')
53
- repo = first(repo_and_subdir)
+ repo = string(first(repo_and_subdir))
54
pkg_name = string(first(split(last(split(repo, '/')), '.')))
55
path = "downstream"
56
if length(repo_and_subdir) > 1
57
length(repo_and_subdir) == 2 || error("Bad repo input.")
58
- subdir = last(repo_and_subdir)
59
- path = joinpath(path, subdir)
60
- pkg_name = last(split(repo, '/'))
+ pkg_name = string(last(repo_and_subdir))
61
62
Pkg.add(pkg_name)
63
# force it to use this PR's version of the package
0 commit comments