use dind again
Some checks failed
ci / checkout (push) Failing after 25s

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

View file

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