Skip to content

Commit 1059470

Browse files
committed
move scripts to script folder
1 parent 18c2ae5 commit 1059470

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/release-trigger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ jobs:
1717
git config --global user.name "SDK Releaser Bot"
1818
git config --global user.email "[email protected]"
1919
20-
.github/trigger_script.sh
20+
scripts/trigger_script.sh
2121
File renamed without changes.

.github/trigger_script.sh renamed to scripts/trigger_script.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
for file in $(git diff --name-only HEAD~1..HEAD | grep pyproject.toml); do
55
# Extract the current version and buikd the expected tag
66
dirpath=$(dirname $file)
7-
expected_tag=$(.github/helper.sh $dirpath --path-version)
8-
version=$(.github/helper.sh $dirpath)
7+
expected_tag=$(scripts/helper.sh $dirpath --path-version)
8+
version=$(scripts/helper.sh $dirpath)
99
# Check if the tag already exists
1010
if git rev-parse --verify $expected_tag^{tag} &> /dev/null; then
1111
echo "Tag '$expected_tag' already exists."

0 commit comments

Comments
 (0)