mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -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
|
||||
run: |
|
||||
set -x
|
||||
export CI=1
|
||||
export CI=true
|
||||
git pull
|
||||
git stash drop || true
|
||||
echo "pwd is $(pwd)"
|
||||
@@ -63,7 +63,9 @@ jobs:
|
||||
git stash pop || true
|
||||
pkg=${i%.rb}
|
||||
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
|
||||
branch_tag="$(date -u +%F-%H-%M)"
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user