Update .gitea/workflows/node-npm.yaml #13
@ -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-npm
|
||||||
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-npm-${{ github.sha }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-node-npm-
|
|
||||||
|
|
||||||
- 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-npm
|
|
||||||
push: ${{ github.ref == 'refs/heads/main' }}
|
|
||||||
tags: |
|
|
||||||
git.kjan.de/actions/node-npm:latest
|
|
||||||
git.kjan.de/actions/node-npm:${{ 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: 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
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user