moved to drone runner
This commit is contained in:
parent
d0a11bcef6
commit
f9b604d8ca
29
.drone.yml
Normal file
29
.drone.yml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
kind: pipeline
|
||||||
|
name: default
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build and publish docker image
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
storage_driver: vfs # required for Synology Docker
|
||||||
|
username:
|
||||||
|
from_secret: "Docker_Hub_Username"
|
||||||
|
password:
|
||||||
|
from_secret: "Docker_Hub_Token"
|
||||||
|
repo: rogersik/autopostgresqlbackup
|
||||||
|
tags: latest
|
||||||
|
|
||||||
|
- name: notify
|
||||||
|
image: drillster/drone-email
|
||||||
|
settings:
|
||||||
|
host: mailcow.basecom.de
|
||||||
|
from:
|
||||||
|
from_secret: "Notifications_Address"
|
||||||
|
username:
|
||||||
|
from_secret: "Notifications_Address"
|
||||||
|
password:
|
||||||
|
from_secret: "Notifications_Address_Password"
|
||||||
|
recipients:
|
||||||
|
from_secret: "Notifications_Address_Recipients"
|
||||||
|
when:
|
||||||
|
status: [ failure ]
|
29
.github/workflows/docker-publish.yml
vendored
29
.github/workflows/docker-publish.yml
vendored
@ -1,29 +0,0 @@
|
|||||||
name: Publish Docker Image
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
schedule:
|
|
||||||
- cron: '0 7 * * SUN'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
docker:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
name: Login to DockerHub
|
|
||||||
uses: docker/login-action@v1
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
||||||
-
|
|
||||||
name: Build and push
|
|
||||||
id: docker_build
|
|
||||||
uses: docker/build-push-action@v2
|
|
||||||
with:
|
|
||||||
push: true
|
|
||||||
tags: rogersik/autopostgresqlbackup:latest
|
|
||||||
-
|
|
||||||
name: Image digest
|
|
||||||
run: echo ${{ steps.docker_build.outputs.digest }}
|
|
Loading…
Reference in New Issue
Block a user