~ajhalili2006's personal website, built with Zensical (successor of Material for Mkdocs) [old repo name got bugged while attempting to do manual knot migration via repo deletion] andreijiroh.dev
zensical mkdocs-material website

ci(github-actions): enable debugging on xargs-based deploy

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>

Changed files
+6 -2
.github
workflows
+6 -2
.github/workflows/docker.yml
···
#cache-to: type=registry,ref=quay.io/ajhalili2006/mkdocs-material-build-ci:buildkit-cache-web
- name: Workaround pushbot for misbehaving reverse proxies
if: ${{ github.event_name != 'pull_request' }}
-
run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} docker push {}
+
run: |
+
set -x
+
echo "${{ steps.meta.outputs.tags }}" | xargs --verbose -I {} docker push {}
devenv:
name: Generate Gitpod workspace image snapshot
runs-on: ubuntu-latest
···
#cache-to: type=registry,ref=quay.io/ajhalili2006/gitpod-workspace:buildkit-cache-web
- name: Workaround pushbot for misbehaving reverse proxies
if: ${{ github.event_name != 'pull_request' }}
-
run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} docker push {}
+
run: |
+
set -x
+
echo "${{ steps.meta.outputs.tags }}" | xargs --verbose -I {} docker push {}