Use new action
All checks were successful
Node npm / Build and push image (pull_request) Successful in 35s
PHP 8.2 / Build and push image (pull_request) Successful in 52s
Node ssh / Build and push image (pull_request) Successful in 1m39s
PHP deployer / Build and push image (pull_request) Successful in 37s
Rust node / Build and push image (pull_request) Successful in 1m43s
ZMK builder / Build and push image (pull_request) Successful in 1m47s

This commit is contained in:
Jan Gleytenhoover 2024-08-16 21:16:09 +02:00
parent cf20d40c75
commit 7af3ffd329
6 changed files with 36 additions and 223 deletions

@ -16,7 +16,7 @@ jobs:
container: catthehacker/ubuntu:act-latest container: catthehacker/ubuntu:act-latest
steps: steps:
- name: Checkout - name: Build Docker image
uses: https://git.kjan.de/actions/docker-build@v1 uses: https://git.kjan.de/actions/docker-build@v1
with: with:
name: node-npm name: node-npm

@ -16,48 +16,11 @@ jobs:
container: catthehacker/ubuntu:act-latest container: catthehacker/ubuntu:act-latest
steps: steps:
- name: Checkout - name: Build Docker image
uses: https://git.kjan.de/actions/checkout@v4 uses: https://git.kjan.de/actions/docker-build@v1
- name: Set up Docker Buildx
uses: https://git.kjan.de/actions/setup-buildx-action@v3
- name: Login to local Docker Registry
uses: https://git.kjan.de/actions/login-action@v3
with: with:
registry: git.kjan.de name: node-ssh
username: ${{ secrets.REGISTRY_USERNAME }} REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }} REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
- name: Login to Docker.io Registry DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
uses: https://git.kjan.de/actions/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-node-ssh-${{ github.sha }}
restore-keys: |
${{ runner.os }}-node-ssh-
- name: Build and push
uses: https://git.kjan.de/actions/build-push-action@v6
with:
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
context: ./images/actions/node-ssh
push: ${{ github.ref == 'refs/heads/main' }}
tags: |
git.kjan.de/actions/node-ssh:latest
git.kjan.de/actions/node-ssh:${{ gitea.sha }}
- # Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache

@ -16,49 +16,11 @@ jobs:
container: catthehacker/ubuntu:act-latest container: catthehacker/ubuntu:act-latest
steps: steps:
- name: Checkout - name: Build Docker image
uses: https://git.kjan.de/actions/checkout@v4 uses: https://git.kjan.de/actions/docker-build@v1
- name: Set up Docker Buildx
uses: https://git.kjan.de/actions/setup-buildx-action@v3
- name: Login to local Docker Registry
uses: https://git.kjan.de/actions/login-action@v3
with: with:
registry: git.kjan.de name: php-8.2
username: ${{ secrets.REGISTRY_USERNAME }} REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }} REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
- name: Login to Docker.io Registry DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
uses: https://git.kjan.de/actions/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-php-8-2-${{ github.sha }}
restore-keys: |
${{ runner.os }}-php-8-2-
- name: Build and push
uses: https://git.kjan.de/actions/build-push-action@v6
with:
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
context: ./images/actions/php-8.2
push: ${{ github.ref == 'refs/heads/main' }}
tags: |
git.kjan.de/actions/php-8.2:latest
git.kjan.de/actions/php-8.2:${{ gitea.sha }}
- # Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache

@ -16,48 +16,11 @@ jobs:
container: catthehacker/ubuntu:act-latest container: catthehacker/ubuntu:act-latest
steps: steps:
- name: Checkout - name: Build Docker image
uses: https://git.kjan.de/actions/checkout@v4 uses: https://git.kjan.de/actions/docker-build@v1
- name: Set up Docker Buildx
uses: https://git.kjan.de/actions/setup-buildx-action@v3
- name: Login to local Docker Registry
uses: https://git.kjan.de/actions/login-action@v3
with: with:
registry: git.kjan.de name: php-deployer
username: ${{ secrets.REGISTRY_USERNAME }} REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }} REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
- name: Login to Docker.io Registry DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
uses: https://git.kjan.de/actions/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-php-deployer-${{ github.sha }}
restore-keys: |
${{ runner.os }}-php-deployer-
- name: Build and push
uses: https://git.kjan.de/actions/build-push-action@v6
with:
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
context: ./images/actions/php-deployer
push: ${{ github.ref == 'refs/heads/main' }}
tags: |
git.kjan.de/actions/php-deployer:latest
git.kjan.de/actions/php-deployer:${{ gitea.sha }}
- # Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache

@ -16,48 +16,11 @@ jobs:
container: catthehacker/ubuntu:act-latest container: catthehacker/ubuntu:act-latest
steps: steps:
- name: Checkout - name: Build Docker image
uses: https://git.kjan.de/actions/checkout@v4 uses: https://git.kjan.de/actions/docker-build@v1
- name: Set up Docker Buildx
uses: https://git.kjan.de/actions/setup-buildx-action@v3
- name: Login to local Docker Registry
uses: https://git.kjan.de/actions/login-action@v3
with: with:
registry: git.kjan.de name: rust-node
username: ${{ secrets.REGISTRY_USERNAME }} REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }} REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
- name: Login to Docker.io Registry DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
uses: https://git.kjan.de/actions/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-rust-node-${{ github.sha }}
restore-keys: |
${{ runner.os }}-rust-node-
- name: Build and push
uses: https://git.kjan.de/actions/build-push-action@v6
with:
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
context: ./images/actions/rust-node
push: ${{ github.ref == 'refs/heads/main' }}
tags: |
git.kjan.de/actions/rust-node:latest
git.kjan.de/actions/rust-node:${{ gitea.sha }}
- # Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache

@ -16,49 +16,11 @@ jobs:
container: catthehacker/ubuntu:act-latest container: catthehacker/ubuntu:act-latest
steps: steps:
- name: Checkout - name: Build Docker image
uses: https://git.kjan.de/actions/checkout@v4 uses: https://git.kjan.de/actions/docker-build@v1
- name: Set up Docker Buildx
uses: https://git.kjan.de/actions/setup-buildx-action@v3
- name: Login to local Docker Registry
uses: https://git.kjan.de/actions/login-action@v3
with: with:
registry: git.kjan.de name: zmk-builder
username: ${{ secrets.REGISTRY_USERNAME }} REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }} REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
- name: Login to Docker.io Registry DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
uses: https://git.kjan.de/actions/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-zmk-builder-${{ github.sha }}
restore-keys: |
${{ runner.os }}-zmk-builder-
- name: Build and push
uses: https://git.kjan.de/actions/build-push-action@v6
with:
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
context: ./images/actions/zmk-builder
push: ${{ github.ref == 'refs/heads/main' }}
tags: |
git.kjan.de/actions/zmk-builder:latest
git.kjan.de/actions/zmk-builder:${{ gitea.sha }}
- # Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache