Compare commits
44 Commits
aab5b31d01
...
630d9911d7
Author | SHA1 | Date | |
---|---|---|---|
630d9911d7 | |||
efa9324d13 | |||
0b0dcaa32e | |||
127ee6c9ec | |||
7813f7f4e9 | |||
6b5019b3df | |||
81e15c17ec | |||
698c12759e | |||
f1a4c8e4ea | |||
6ccee0b86d | |||
f46753d16b | |||
62f4dbb127 | |||
26d6348250 | |||
c4f6f7e643 | |||
8dee1d6097 | |||
35195480b4 | |||
b7a2ff7ccc | |||
d042d5cbf4 | |||
d61711508f | |||
e8e554d09e | |||
24e6c977fa | |||
5652d25d68 | |||
fff6a24680 | |||
12616abbd2 | |||
611fdd522e | |||
d4ffc96a9d | |||
689db26646 | |||
7dacf25b41 | |||
93b88586e4 | |||
41ad6b2e8c | |||
7397efb483 | |||
54090f381e | |||
fa2bfb5798 | |||
8969276eb0 | |||
e1dce4813f | |||
4022d151ff | |||
59b7736234 | |||
f37f7e6b49 | |||
6768196d09 | |||
645253ba1f | |||
2a7a483faf | |||
26016220d4 | |||
728498cfb1 | |||
084e71acfe |
@ -1,13 +1,13 @@
|
|||||||
name: Build and Push Image
|
name: Node npm
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "@weekly"
|
- cron: "@weekly"
|
||||||
push:
|
push:
|
||||||
branches:
|
branches: [main]
|
||||||
- main
|
|
||||||
paths:
|
paths:
|
||||||
- .gitea/workflows/node-npm.yaml
|
- .gitea/workflows/node-npm.yaml
|
||||||
- images/actions/node-npm/**
|
- images/actions/node-npm/**
|
||||||
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@ -22,18 +22,24 @@ jobs:
|
|||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: https://git.kjan.de/actions/setup-buildx-action@v3
|
uses: https://git.kjan.de/actions/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Login to Docker Registry
|
- name: Login to local Docker Registry
|
||||||
uses: https://git.kjan.de/actions/login-action@v3
|
uses: https://git.kjan.de/actions/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: git.kjan.de
|
registry: git.kjan.de
|
||||||
username: ${{ secrets.REGISTRY_USERNAME }}
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
|
|
||||||
|
- name: Login to Docker.io Registry
|
||||||
|
uses: https://git.kjan.de/actions/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: https://git.kjan.de/actions/build-push-action@v5
|
uses: https://git.kjan.de/actions/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: ./images/actions/node-npm
|
context: ./images/actions/node-npm
|
||||||
push: true
|
push: ${{ github.ref == 'refs/heads/main' }}
|
||||||
tags: |
|
tags: |
|
||||||
git.kjan.de/actions/node-npm:latest
|
git.kjan.de/actions/node-npm:latest
|
||||||
git.kjan.de/actions/node-npm:${{ gitea.run_number }}
|
git.kjan.de/actions/node-npm:${{ gitea.run_number }}
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name: Build and Push Image
|
name: Node ssh
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "@weekly"
|
- cron: "@weekly"
|
||||||
push:
|
push:
|
||||||
branches:
|
branches: [main]
|
||||||
- main
|
|
||||||
paths:
|
paths:
|
||||||
- .gitea/workflows/node-ssh.yaml
|
- .gitea/workflows/node-ssh.yaml
|
||||||
- images/actions/node-ssh/**
|
- images/actions/node-ssh/**
|
||||||
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@ -22,18 +22,24 @@ jobs:
|
|||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: https://git.kjan.de/actions/setup-buildx-action@v3
|
uses: https://git.kjan.de/actions/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Login to Docker Registry
|
- name: Login to local Docker Registry
|
||||||
uses: https://git.kjan.de/actions/login-action@v3
|
uses: https://git.kjan.de/actions/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: git.kjan.de
|
registry: git.kjan.de
|
||||||
username: ${{ secrets.REGISTRY_USERNAME }}
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
|
|
||||||
|
- name: Login to Docker.io Registry
|
||||||
|
uses: https://git.kjan.de/actions/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: https://git.kjan.de/actions/build-push-action@v5
|
uses: https://git.kjan.de/actions/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: ./images/actions/node-ssh
|
context: ./images/actions/node-ssh
|
||||||
push: true
|
push: ${{ github.ref == 'refs/heads/main' }}
|
||||||
tags: |
|
tags: |
|
||||||
git.kjan.de/actions/node-ssh:latest
|
git.kjan.de/actions/node-ssh:latest
|
||||||
git.kjan.de/actions/node-ssh:${{ gitea.run_number }}
|
git.kjan.de/actions/node-ssh:${{ gitea.run_number }}
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name: Build and Push Image
|
name: PHP 8.2
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "@weekly"
|
- cron: "@weekly"
|
||||||
push:
|
push:
|
||||||
branches:
|
branches: [main]
|
||||||
- main
|
|
||||||
paths:
|
paths:
|
||||||
- .gitea/workflows/php-8.2.yaml
|
- .gitea/workflows/php-8.2.yaml
|
||||||
- images/actions/php-8.2/**
|
- images/actions/php-8.2/**
|
||||||
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@ -22,18 +22,24 @@ jobs:
|
|||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: https://git.kjan.de/actions/setup-buildx-action@v3
|
uses: https://git.kjan.de/actions/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Login to Docker Registry
|
- name: Login to local Docker Registry
|
||||||
uses: https://git.kjan.de/actions/login-action@v3
|
uses: https://git.kjan.de/actions/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: git.kjan.de
|
registry: git.kjan.de
|
||||||
username: ${{ secrets.REGISTRY_USERNAME }}
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
|
|
||||||
|
- name: Login to Docker.io Registry
|
||||||
|
uses: https://git.kjan.de/actions/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: https://git.kjan.de/actions/build-push-action@v5
|
uses: https://git.kjan.de/actions/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: ./images/actions/php-8.2
|
context: ./images/actions/php-8.2
|
||||||
push: true
|
push: ${{ github.ref == 'refs/heads/main' }}
|
||||||
tags: |
|
tags: |
|
||||||
git.kjan.de/actions/php-8.2:latest
|
git.kjan.de/actions/php-8.2:latest
|
||||||
git.kjan.de/actions/php-8.2:${{ gitea.run_number }}
|
git.kjan.de/actions/php-8.2:${{ gitea.run_number }}
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name: Build and Push Image
|
name: PHP deployer
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "@weekly"
|
- cron: "@weekly"
|
||||||
push:
|
push:
|
||||||
branches:
|
branches: [main]
|
||||||
- main
|
|
||||||
paths:
|
paths:
|
||||||
- .gitea/workflows/php-deployer.yaml
|
- .gitea/workflows/php-deployer.yaml
|
||||||
- images/actions/php-deployer/**
|
- images/actions/php-deployer/**
|
||||||
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@ -22,18 +22,24 @@ jobs:
|
|||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: https://git.kjan.de/actions/setup-buildx-action@v3
|
uses: https://git.kjan.de/actions/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Login to Docker Registry
|
- name: Login to local Docker Registry
|
||||||
uses: https://git.kjan.de/actions/login-action@v3
|
uses: https://git.kjan.de/actions/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: git.kjan.de
|
registry: git.kjan.de
|
||||||
username: ${{ secrets.REGISTRY_USERNAME }}
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
|
|
||||||
|
- name: Login to Docker.io Registry
|
||||||
|
uses: https://git.kjan.de/actions/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: https://git.kjan.de/actions/build-push-action@v5
|
uses: https://git.kjan.de/actions/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: ./images/actions/php-deployer
|
context: ./images/actions/php-deployer
|
||||||
push: true
|
push: ${{ github.ref == 'refs/heads/main' }}
|
||||||
tags: |
|
tags: |
|
||||||
git.kjan.de/actions/php-deployer:latest
|
git.kjan.de/actions/php-deployer:latest
|
||||||
git.kjan.de/actions/php-deployer:${{ gitea.run_number }}
|
git.kjan.de/actions/php-deployer:${{ gitea.run_number }}
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name: Build and Push Image
|
name: Rust node
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "@weekly"
|
- cron: "@weekly"
|
||||||
push:
|
push:
|
||||||
branches:
|
branches: [main]
|
||||||
- main
|
|
||||||
paths:
|
paths:
|
||||||
- .gitea/workflows/rust-node.yaml
|
- .gitea/workflows/rust-node.yaml
|
||||||
- images/actions/rust-node/**
|
- images/actions/rust-node/**
|
||||||
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@ -22,18 +22,24 @@ jobs:
|
|||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: https://git.kjan.de/actions/setup-buildx-action@v3
|
uses: https://git.kjan.de/actions/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Login to Docker Registry
|
- name: Login to local Docker Registry
|
||||||
uses: https://git.kjan.de/actions/login-action@v3
|
uses: https://git.kjan.de/actions/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: git.kjan.de
|
registry: git.kjan.de
|
||||||
username: ${{ secrets.REGISTRY_USERNAME }}
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
|
|
||||||
|
- name: Login to Docker.io Registry
|
||||||
|
uses: https://git.kjan.de/actions/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: https://git.kjan.de/actions/build-push-action@v5
|
uses: https://git.kjan.de/actions/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: ./images/actions/rust-node
|
context: ./images/actions/rust-node
|
||||||
push: true
|
push: ${{ github.ref == 'refs/heads/main' }}
|
||||||
tags: |
|
tags: |
|
||||||
git.kjan.de/actions/rust-node:latest
|
git.kjan.de/actions/rust-node:latest
|
||||||
git.kjan.de/actions/rust-node:${{ gitea.run_number }}
|
git.kjan.de/actions/rust-node:${{ gitea.run_number }}
|
||||||
|
6
renovate.json
Normal file
6
renovate.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": [
|
||||||
|
"local>Renovate/renovate-config"
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user