mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-06-01 11:22:34 +02:00
Create docker-image-nightly.yml
This commit is contained in:
parent
3a70c15846
commit
1c125dd14e
1 changed files with 26 additions and 0 deletions
26
.github/workflows/docker-image-nightly.yml
vendored
Normal file
26
.github/workflows/docker-image-nightly.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
name: CI-Latest
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
-
|
||||
name: Build and push
|
||||
uses: mr-smithers-excellent/docker-build-push@v5
|
||||
with:
|
||||
image: philippdormann/uptime
|
||||
tags: nightly
|
||||
registry: docker.io
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
Loading…
Add table
Reference in a new issue