Podman doesn't need a socket
/ test (push) Failing after 2m50s
Details
/ test (push) Failing after 2m50s
Details
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
This commit is contained in:
parent
5bb4d8536b
commit
385d246037
|
@ -2,14 +2,12 @@ on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
env:
|
|
||||||
DOCKER_HOST=tcp://localhost:2367
|
|
||||||
steps:
|
steps:
|
||||||
- run: echo All Good
|
- run: echo All Good
|
||||||
- run: apt update && apt install docker.io -y
|
- run: apt update && apt install podman -y
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- run: pwd ; echo ""; ls; env
|
- 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: podman 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: podman 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 push git.martyn.berlin/martyn/fat-ssh:latest
|
||||||
|
|
Loading…
Reference in New Issue