hacktoberfestdockerwebsocketwebappuptime-monitoringuptimesocket-iosingle-page-appselfhostedself-hostedresponsivemonitoring
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
610 B
26 lines
610 B
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 }}
|
|
|