Skip to content

Commit 243cfc2

Browse files
committed
Fix tagging script
1 parent db7c05e commit 243cfc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/tag.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ eval `ssh-agent -s` &> /dev/null
1212
ssh-add $GITHUB_WORKSPACE/scripts/deploy-key &> /dev/null
1313

1414
# Create and push tag
15-
export GIT_TAG=v$(grep -m 1 "\"version\"" $GITHUB_WORKSPACE/manifest-chrome.json | sed -r 's/^ *//;s/.*: *"//;s/",?//')
15+
export GIT_TAG=v$(grep -m 1 "\"version\"" $GITHUB_WORKSPACE/manifests/manifest-chrome.json | sed -r 's/^ *//;s/.*: *"//;s/",?//')
1616
git checkout ${GITHUB_REF##*/}
1717
git tag $GIT_TAG -a -m "Automatic tag from run $GITHUB_RUN_ID"
1818
git push origin $GIT_TAG

0 commit comments

Comments
 (0)