mirror of
https://mau.dev/andreijiroh-dev/website.git
synced 2024-11-22 00:13:40 +00:00
ci(github-actions): enable debugging on xargs-based deploy
Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>
This commit is contained in:
parent
f11f472004
commit
3af92fab38
1 changed files with 6 additions and 2 deletions
8
.github/workflows/docker.yml
vendored
8
.github/workflows/docker.yml
vendored
|
@ -95,7 +95,9 @@ jobs:
|
|||
#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
|
||||
|
@ -171,4 +173,6 @@ jobs:
|
|||
#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 {}
|
||||
|
|
Loading…
Reference in a new issue