mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
Add debugging output to Updater on Demand workflow. (#13539)
Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
This commit is contained in:
committed by
GitHub
parent
bc1498577f
commit
4e77e7c6c6
6
.github/workflows/Updater-on-Demand.yml
vendored
6
.github/workflows/Updater-on-Demand.yml
vendored
@@ -53,7 +53,7 @@ jobs:
|
|||||||
id: update-checks
|
id: update-checks
|
||||||
run: |
|
run: |
|
||||||
set -x
|
set -x
|
||||||
export CI=1
|
export CI=true
|
||||||
git pull
|
git pull
|
||||||
git stash drop || true
|
git stash drop || true
|
||||||
echo "pwd is $(pwd)"
|
echo "pwd is $(pwd)"
|
||||||
@@ -63,7 +63,9 @@ jobs:
|
|||||||
git stash pop || true
|
git stash pop || true
|
||||||
pkg=${i%.rb}
|
pkg=${i%.rb}
|
||||||
pkg=${pkg#packages/}
|
pkg=${pkg#packages/}
|
||||||
pkg_version="$(LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH ruby tools/version.rb -j ${pkg} | jq -r '.[]|.version')"
|
LD_LIBRARY_PATH=/usr/local/lib ruby tools/version.rb -j ${pkg}
|
||||||
|
LD_LIBRARY_PATH=/usr/local/lib ruby tools/version.rb -j ${pkg} | jq -r '.[]|.version'
|
||||||
|
pkg_version="$(LD_LIBRARY_PATH=/usr/local/lib ruby tools/version.rb -j ${pkg} | jq -r '.[]|.version')"
|
||||||
if [[ -z "$pkg_version" ]]; then
|
if [[ -z "$pkg_version" ]]; then
|
||||||
branch_tag="$(date -u +%F-%H-%M)"
|
branch_tag="$(date -u +%F-%H-%M)"
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user