Compare commits

..

No commits in common. "7df68fdef999bef87fc011b4d527308d2c129eb5" and "1796e4dccef9ba1fee6929fe7f0619faed9a3277" have entirely different histories.

2 changed files with 30 additions and 31 deletions

View file

@ -1,31 +0,0 @@
name: Build and Push Docker image
on:
push:
branches:
- main
jobs:
build-and-push:
name: Build and Push Docker image
runs-on: docker
steps:
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to cr.sp-codes.de
uses: docker/login-action@v2
with:
registry: cr.sp-codes.de
username: ${{ secrets.CR_USERNAME }}
password: ${{ secrets.CR_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: |
spcodes/peertube:latest
cr.sp-codes.de/sp-codes/peertube:latest

30
.woodpecker.yml Normal file
View file

@ -0,0 +1,30 @@
pipeline:
docker:
image: woodpeckerci/plugin-docker-buildx
secrets:
- DOCKER_USERNAME
- DOCKER_PASSWORD
settings:
repo: spcodes/peertube
tags:
- latest
when:
branch: main
event:
- push
cr:
image: woodpeckerci/plugin-docker-buildx
secrets:
- source: CR_USERNAME
target: DOCKER_USERNAME
- source: CR_PASSWORD
target: DOCKER_PASSWORD
settings:
registry: cr.sp-codes.de
repo: cr.sp-codes.de/sp-codes/peertube
tags:
- latest
when:
branch: main
event:
- push