Update .gitea/workflows/node-npm.yaml (#4)
All checks were successful
Node npm / Build and push image (push) Successful in 48s
Node ssh / Build and push image (push) Successful in 1m8s
PHP 8.2 / Build and push image (push) Successful in 47s
PHP deployer / Build and push image (push) Successful in 34s
Rust node / Build and push image (push) Successful in 7m0s
All checks were successful
Node npm / Build and push image (push) Successful in 48s
Node ssh / Build and push image (push) Successful in 1m8s
PHP 8.2 / Build and push image (push) Successful in 47s
PHP deployer / Build and push image (push) Successful in 34s
Rust node / Build and push image (push) Successful in 7m0s
Reviewed-on: #4
This commit is contained in:
parent
084e71acfe
commit
8a70b9edc4
@ -1,14 +1,14 @@
|
|||||||
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:
|
||||||
name: Build and push image
|
name: Build and push image
|
||||||
@ -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 }}
|
||||||
|
Loading…
Reference in New Issue
Block a user