13 lines
271 B
YAML
13 lines
271 B
YAML
on: [push]
|
|
jobs:
|
|
deploy:
|
|
runs-on: docker
|
|
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
|
|
|