Update .gitea/workflows/node-npm.yaml #13

Merged
jank merged 4 commits from add-custom-action into main 2024-08-16 19:20:20 +00:00
6 changed files with 36 additions and 223 deletions
Showing only changes of commit 7af3ffd329 - Show all commits

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

@ -16,48 +16,11 @@ jobs:
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
uses: https://git.kjan.de/actions/checkout@v4
- 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
- name: Build Docker image
uses: https://git.kjan.de/actions/docker-build@v1
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: 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
name: node-ssh
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}

@ -16,49 +16,11 @@ jobs:
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
uses: https://git.kjan.de/actions/checkout@v4
- 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
- name: Build Docker image
uses: https://git.kjan.de/actions/docker-build@v1
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: 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
name: php-8.2
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}

@ -16,48 +16,11 @@ jobs:
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
uses: https://git.kjan.de/actions/checkout@v4
- 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
- name: Build Docker image
uses: https://git.kjan.de/actions/docker-build@v1
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: 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
name: php-deployer
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}

@ -16,48 +16,11 @@ jobs:
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
uses: https://git.kjan.de/actions/checkout@v4
- 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
- name: Build Docker image
uses: https://git.kjan.de/actions/docker-build@v1
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: 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
name: rust-node
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}

@ -16,49 +16,11 @@ jobs:
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
uses: https://git.kjan.de/actions/checkout@v4
- 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
- name: Build Docker image
uses: https://git.kjan.de/actions/docker-build@v1
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: 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
name: zmk-builder
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}