18 lines
402 B
YAML
18 lines
402 B
YAML
on:
|
|
push:
|
|
schedule:
|
|
- cron: '30 5 * * 0'
|
|
jobs:
|
|
deploy:
|
|
runs-on: docker
|
|
container:
|
|
image: registry.mightycastle.net/runner-image
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
steps:
|
|
- name: build and publish
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
push: true
|
|
tags: registry.mightycastle.net/runner-image:latest
|
|
|