File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 3232 - name: Setup Babashka
3333 uses: turtlequeue/setup-babashka@v1.7.0
3434 with:
35- babashka-version: 1.12.197
35+ babashka-version: 1.12.199
3636
3737 - name: Install js dependencies
3838 run: yarn install --frozen-lockfile --prefer-offline
Original file line number Diff line number Diff line change 1515
1616(doseq [ad artifact-dirs]
1717 (println "Adding" ad "...")
18- (shell {:dir temp-dir} "git" "add" ad))
18+ (shell "git" "add" ad))
1919
20- (let [{:keys [exit]} (shell {:dir temp-dir
21- :continue true}
22- "git" "diff" "--cached" "--quiet")]
20+ (let [{:keys [exit]} (shell
21+ { :continue true}
22+ "git" "diff" "--cached" "--quiet")]
2323 (if (zero? exit)
2424 (println "→ No changes to commit.")
2525 (do
2626 (println "→ Changes detected, committing...")
27- (shell {:dir temp-dir} "git" "commit" "-m" target-branch)
28- (shell {:dir temp-dir} "git" "push" "--force" "origin" target-branch)
27+ (shell "git" "commit" "-m" target-branch)
28+ (shell "git" "push" "--force" "origin" target-branch)
2929 (println "→ Branch updated successfully."))))
3030
3131(println "→ Checking for existing PR...")
You can’t perform that action at this time.
0 commit comments