diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 8734cad..61a06eb 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -2,17 +2,12 @@ on: [push] jobs: deploy: runs-on: docker - container: - image: registry.mightycastle.net/runner-image - volumes: - - /var/run/docker.sock:/var/run/docker.sock steps: - - id: path - run: echo ~ - id: checkout uses: actions/checkout@v4 - id: build - run: docker build --pull --rm -t registry.mightycastle.net/runner-image:latest . - - id: push - run: docker push registry.mightycastle.net/runner-image:latest + uses: docker/build-push-action@v6 + with: + push: true + tags: registry.mightycastle.net/runner-image:latest