build: build and publish image nightly
Removes need to update toolchain for every action step
This commit is contained in:
parent
961c02bcf9
commit
5b2365e925
4 changed files with 59 additions and 5 deletions
18
.forgejo/workflows/build-image.yml
Normal file
18
.forgejo/workflows/build-image.yml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue