hopefully last fix of the runner
Some checks failed
Docker Build / build (push) Failing after 13m14s
Deploy Matrix Bot / deploy (push) Has been cancelled

This commit is contained in:
shinya 2026-03-04 23:07:47 +01:00
parent 6dc2c6caf5
commit 39099e9bcc

View File

@ -8,12 +8,17 @@ on:
jobs:
deploy:
runs-on: self-hosted
env:
DOCKER_HOST: unix:///var/run/docker.sock
DOCKER_BUILDKIT: "0"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build image
run: docker buildx build --load -t matrix-bot:latest --build-arg TARGETOS=linux --build-arg TARGETARCH=arm64 .
run: |
docker build -t matrix-bot:latest --build-arg TARGETOS=linux --build-arg TARGETARCH=arm64 .
docker image inspect matrix-bot:latest
- name: Stop and remove old container
run: |