docker with buildx
This commit is contained in:
parent
48729e78cb
commit
50f88b7c2f
2 changed files with 28 additions and 4 deletions
17
.forgejo/workflows/deploy.yml
Normal file
17
.forgejo/workflows/deploy.yml
Normal file
|
@ -0,0 +1,17 @@
|
|||
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: checkout
|
||||
uses: actions/checkout@v4
|
||||
- id: build
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
push: true
|
||||
tags: registry.mightycastle.net/runner-image:latest
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue