Trying different way of cloning; updates to cmds
Some checks failed
Docker Build Pipeline / Cleanup-Old-Artifacts (push) Successful in 1s
Docker Build Pipeline / Check-Environment (push) Failing after 1s
Docker Build Pipeline / Clone-Repo (push) Failing after 2s
Docker Build Pipeline / Build-Images (push) Failing after 0s
Docker Build Pipeline / Push-Images (push) Failing after 1s
Docker Build Pipeline / Cleanup-Build-Images (push) Failing after 1s
Docker Build Pipeline / Cleanup-Docker-Login (push) Successful in 0s

This commit is contained in:
Chris Hammer 2024-12-21 22:52:45 -05:00
parent 13b84df2fd
commit 4091513585
2 changed files with 18 additions and 14 deletions

View File

@ -26,11 +26,12 @@ jobs:
steps:
- name: Environment check
run: |
hostnamectl
env
whoami
pwd
tree
hostnamectl && echo
env && echo
whoami && echo
pwd && echo
tree && echo
git log -1 && echo
Clone-Repo:

View File

@ -26,11 +26,12 @@ jobs:
steps:
- name: Environment check
run: |
hostnamectl
env
whoami
pwd
tree
hostnamectl && echo
env && echo
whoami && echo
pwd && echo
tree && echo
git log -1 && echo
Clone-Repo:
@ -41,10 +42,12 @@ jobs:
steps:
- name: Clone repository
run: |
git clone https://gitea.thezengarden.net/podman/ansible-dev.git
cd ansible-dev
git checkout ${{ env.GITHUB_REF_NAME }}
uses: actions/checkout@v3
# - name: Clone repository
# run: |
# git clone https://gitea.thezengarden.net/podman/ansible-dev.git
# cd ansible-dev
# git checkout ${{ env.GITHUB_REF_NAME }}
Build-Images: