Podman doesn't need a socket
/ test (push) Failing after 2m50s Details

Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
This commit is contained in:
Martyn 2024-02-23 16:41:59 +00:00
parent 5bb4d8536b
commit 385d246037
1 changed files with 4 additions and 6 deletions

View File

@ -2,14 +2,12 @@ on: [push]
jobs:
test:
runs-on: docker
env:
DOCKER_HOST=tcp://localhost:2367
steps:
- run: echo All Good
- run: apt update && apt install docker.io -y
- run: apt update && apt install podman -y
- name: Check out repository code
uses: actions/checkout@v3
- run: pwd ; echo ""; ls; env
- run: DOCKER_HOST=tcp://127.0.0.11:2367 docker build -t git.martyn.berlin/martyn/fat-ssh:latest .
- run: DOCKER_HOST=tcp://127.0.0.11:2367 docker login -P ${{ secrets.PUSH_TOKEN }} -u martyn git.martyn.berlin
- run: DOCKER_HOST=tcp://127.0.0.11:2367 docker push git.martyn.berlin/martyn/fat-ssh:latest
- run: podman build -t git.martyn.berlin/martyn/fat-ssh:latest .
- run: podman login -P ${{ secrets.PUSH_TOKEN }} -u martyn git.martyn.berlin
- run: podman push git.martyn.berlin/martyn/fat-ssh:latest