try podman
Some checks failed
ci / checkout (push) Failing after 14s

This commit is contained in:
R.J. 2025-01-31 17:26:09 +01:00
parent 38d77c2fc5
commit e40d1fb8dc
No known key found for this signature in database
GPG key ID: D85876B31F4275CF

View file

@ -7,16 +7,16 @@ jobs:
checkout: checkout:
runs-on: docker runs-on: docker
container: container:
image: docker:dind image: alpine:edge
steps: steps:
- name: Get git and docker - name: Get git and docker
run: apk add git nodejs run: apk add git podman nodejs
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Login - name: Login
run: echo "${{ secrets.TOKEN}}" | docker login -u deke git.dekedin.me --password-stdin run: echo "${{ secrets.TOKEN}}" | podman login -u deke git.dekedin.me --password-stdin
- name: Build - name: Build
run: docker build -t devenv . run: podman build -t devenv .
- name: Push image - name: Push image
run: docker push devenv git.dekedin.me/deke/dev-env run: podman push devenv git.dekedin.me/deke/dev-env