Compare commits
No commits in common. "63de39a85d7c3c49f560063acc70c901e28351da" and "4121d563d2884757f01e1a07e1bc201d5083c85d" have entirely different histories.
63de39a85d
...
4121d563d2
3 changed files with 36 additions and 38 deletions
|
@ -1,35 +0,0 @@
|
||||||
name: Build and Push Docker image
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
docker:
|
|
||||||
name: Build and Push Docker image
|
|
||||||
runs-on: docker
|
|
||||||
container:
|
|
||||||
image: ghcr.io/catthehacker/ubuntu:act-latest
|
|
||||||
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:
|
|
||||||
platforms: linux/amd64,linux/arm64/v8
|
|
||||||
push: true
|
|
||||||
tags: |
|
|
||||||
spcodes/coturn:4.6.2
|
|
||||||
spcodes/coturn:latest
|
|
||||||
cr.sp-codes.de/sp-codes/coturn:4.6.2
|
|
||||||
cr.sp-codes.de/sp-codes/coturn:latest
|
|
34
.woodpecker.yml
Normal file
34
.woodpecker.yml
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
pipeline:
|
||||||
|
docker:
|
||||||
|
image: woodpeckerci/plugin-docker-buildx
|
||||||
|
secrets:
|
||||||
|
- DOCKER_USERNAME
|
||||||
|
- DOCKER_PASSWORD
|
||||||
|
settings:
|
||||||
|
repo: spcodes/coturn
|
||||||
|
tags:
|
||||||
|
- 4.6.2
|
||||||
|
- 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/coturn
|
||||||
|
tags:
|
||||||
|
- 4.6.2
|
||||||
|
- latest
|
||||||
|
when:
|
||||||
|
branch:
|
||||||
|
- main
|
||||||
|
event:
|
||||||
|
- push
|
|
@ -1,5 +1,4 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
||||||
"assignees": [
|
"assignees": [
|
||||||
"samuel-p"
|
"samuel-p"
|
||||||
],
|
],
|
||||||
|
@ -12,11 +11,11 @@
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
"^Dockerfile$",
|
"^Dockerfile$",
|
||||||
".forgejo/workflows/docker.yml$"
|
"^.woodpecker.yml$"
|
||||||
],
|
],
|
||||||
"matchStrings": [
|
"matchStrings": [
|
||||||
"\\s+ENV\\s*COTURN_VERSION=\"(?<currentValue>.*?)\"\\s+",
|
"\\s+ENV\\s*COTURN_VERSION=\"(?<currentValue>.*?)\"\\s+",
|
||||||
"coturn:(?<currentValue>[v.0-9]+)"
|
"\\s+repo:\\s*\\S*\\/coturn\\s+tags:[-\\s]+(?<currentValue>.*?)\\s+"
|
||||||
],
|
],
|
||||||
"versioningTemplate": "loose",
|
"versioningTemplate": "loose",
|
||||||
"depNameTemplate": "coturn/coturn",
|
"depNameTemplate": "coturn/coturn",
|
||||||
|
|
Reference in a new issue