build: build and publish image nightly

Removes need to update toolchain for every action step
This commit is contained in:
kemitix 2025-01-09 17:26:55 +00:00 committed by Paul Campbell
parent 961c02bcf9
commit 5b2365e925
4 changed files with 59 additions and 5 deletions

View file

@ -0,0 +1,18 @@
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