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