19 lines
350 B
YAML
19 lines
350 B
YAML
|
on:
|
||
|
schedule:
|
||
|
- cron: '30 1 * * *'
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: docker
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkoutv4
|
||
|
|
||
|
- name: Build
|
||
|
run: docker build . -t git.kemitix.net/kemitix/rust:latest
|
||
|
|
||
|
- name: Publish
|
||
|
run: docker push git.kemitix.net/kemitix/rust:latest
|