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

Reviewed-on: #4
This commit is contained in:
Jan Gleytenhoover 2024-08-15 14:08:55 +00:00
parent 084e71acfe
commit 8a70b9edc4
5 changed files with 56 additions and 26 deletions

@ -1,14 +1,14 @@
name: Build and Push Image
name: Node npm
on:
schedule:
- cron: "@weekly"
push:
branches:
- main
branches: [main]
paths:
- .gitea/workflows/node-npm.yaml
- images/actions/node-npm/**
pull_request:
jobs:
build:
name: Build and push image
@ -22,18 +22,24 @@ jobs:
- name: Set up Docker Buildx
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
with:
registry: git.kjan.de
username: ${{ secrets.REGISTRY_USERNAME }}
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
uses: https://git.kjan.de/actions/build-push-action@v5
with:
context: ./images/actions/node-npm
push: true
push: ${{ github.ref == 'refs/heads/main' }}
tags: |
git.kjan.de/actions/node-npm:latest
git.kjan.de/actions/node-npm:${{ gitea.run_number }}

@ -1,13 +1,13 @@
name: Build and Push Image
name: Node ssh
on:
schedule:
- cron: "@weekly"
push:
branches:
- main
branches: [main]
paths:
- .gitea/workflows/node-ssh.yaml
- images/actions/node-ssh/**
pull_request:
jobs:
build:
@ -22,18 +22,24 @@ jobs:
- name: Set up Docker Buildx
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
with:
registry: git.kjan.de
username: ${{ secrets.REGISTRY_USERNAME }}
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
uses: https://git.kjan.de/actions/build-push-action@v5
with:
context: ./images/actions/node-ssh
push: true
push: ${{ github.ref == 'refs/heads/main' }}
tags: |
git.kjan.de/actions/node-ssh:latest
git.kjan.de/actions/node-ssh:${{ gitea.run_number }}

@ -1,13 +1,13 @@
name: Build and Push Image
name: PHP 8.2
on:
schedule:
- cron: "@weekly"
push:
branches:
- main
branches: [main]
paths:
- .gitea/workflows/php-8.2.yaml
- images/actions/php-8.2/**
pull_request:
jobs:
build:
@ -22,18 +22,24 @@ jobs:
- name: Set up Docker Buildx
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
with:
registry: git.kjan.de
username: ${{ secrets.REGISTRY_USERNAME }}
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
uses: https://git.kjan.de/actions/build-push-action@v5
with:
context: ./images/actions/php-8.2
push: true
push: ${{ github.ref == 'refs/heads/main' }}
tags: |
git.kjan.de/actions/php-8.2:latest
git.kjan.de/actions/php-8.2:${{ gitea.run_number }}

@ -1,13 +1,13 @@
name: Build and Push Image
name: PHP deployer
on:
schedule:
- cron: "@weekly"
push:
branches:
- main
branches: [main]
paths:
- .gitea/workflows/php-deployer.yaml
- images/actions/php-deployer/**
pull_request:
jobs:
build:
@ -22,18 +22,24 @@ jobs:
- name: Set up Docker Buildx
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
with:
registry: git.kjan.de
username: ${{ secrets.REGISTRY_USERNAME }}
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
uses: https://git.kjan.de/actions/build-push-action@v5
with:
context: ./images/actions/php-deployer
push: true
push: ${{ github.ref == 'refs/heads/main' }}
tags: |
git.kjan.de/actions/php-deployer:latest
git.kjan.de/actions/php-deployer:${{ gitea.run_number }}

@ -1,13 +1,13 @@
name: Build and Push Image
name: Rust node
on:
schedule:
- cron: "@weekly"
push:
branches:
- main
branches: [main]
paths:
- .gitea/workflows/rust-node.yaml
- images/actions/rust-node/**
pull_request:
jobs:
build:
@ -22,18 +22,24 @@ jobs:
- name: Set up Docker Buildx
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
with:
registry: git.kjan.de
username: ${{ secrets.REGISTRY_USERNAME }}
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
uses: https://git.kjan.de/actions/build-push-action@v5
with:
context: ./images/actions/rust-node
push: true
push: ${{ github.ref == 'refs/heads/main' }}
tags: |
git.kjan.de/actions/rust-node:latest
git.kjan.de/actions/rust-node:${{ gitea.run_number }}