Skip to content

Commit f23df0d

Browse files
committed
Fix package name from access-vis to accessvis in Analysis3 environment updates
1 parent 9d6cb1c commit f23df0d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/CD.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
152152
path = Path("${{ env.FILE_PATH }}")
153153
version = os.environ["VERSION"]
154-
target = f"accessnri::access-vis=={version}"
154+
target = f"accessnri::accessvis=={version}"
155155
156156
yaml = YAML()
157157
yaml.preserve_quotes = True
@@ -168,7 +168,7 @@ jobs:
168168
169169
replaced = False
170170
for i, d in enumerate(deps):
171-
if isinstance(d, str) and d.startswith("accessnri::access-vis=="):
171+
if isinstance(d, str) and d.startswith("accessnri::accessvis=="):
172172
if d != target:
173173
deps[i] = target
174174
replaced = True
@@ -187,7 +187,7 @@ jobs:
187187
echo "changed=false" >> $GITHUB_OUTPUT
188188
echo "No changes to commit."
189189
else
190-
git commit -m "analysis3: bump access-vis to ${VERSION}"
190+
git commit -m "analysis3: bump accessvis to ${VERSION}"
191191
git push -u origin "$BRANCH"
192192
echo "changed=true" >> $GITHUB_OUTPUT
193193
echo "$BRANCH" > ../branch.txt
@@ -203,6 +203,6 @@ jobs:
203203
gh pr create \
204204
--base "${TARGET_BRANCH}" \
205205
--head "${BRANCH}" \
206-
--title "Bump access-vis to ${VERSION} in analysis3 env" \
207-
--body "Updates \`${FILE_PATH}\` to \`accessnri::access-vis==${VERSION}\`."
206+
--title "Bump accessvis to ${VERSION} in analysis3 env" \
207+
--body "Updates \`${FILE_PATH}\` to \`accessnri::accessvis==${VERSION}\`."
208208
gh pr view "${BRANCH}" --json number -q .number > ../pr_number.txt

0 commit comments

Comments
 (0)