We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 840bb5b commit 05341b7Copy full SHA for 05341b7
2 files changed
scripts/create_gh_pr
100644
100755
@@ -5,14 +5,14 @@ git config user.name $_GITHUB_USER
5
git config user.email $_GITHUB_EMAIL
6
git remote set-url origin https://$_GITHUB_USER:$(cat token.txt)@github.com/dataform-co/dataform.git
7
8
+echo "Update version..."
9
+./scripts/update_version
10
+
11
export git_branch_name=npm_veriosn_$(cat version.bzl | grep DF_VERSION | awk '{ print $3 }' | sed "s/\"//g")
12
13
echo "Create new branch $git_branch_name..."
14
git checkout -b $git_branch_name
15
-echo "Update version..."
-./scripts/update_version
-
16
git add version.bzl
17
git commit -m "Update the npm package version"
18
scripts/update_version
0 commit comments