Jan Gleytenhoover
3532e68242
All checks were successful
Node npm / Build and push image (pull_request) Successful in 41s
PHP 8.2 / Build and push image (pull_request) Successful in 58s
Node ssh / Build and push image (pull_request) Successful in 1m55s
PHP deployer / Build and push image (pull_request) Successful in 38s
Rust node / Build and push image (pull_request) Successful in 1m49s
69 lines
2.0 KiB
YAML
69 lines
2.0 KiB
YAML
name: Node npm
|
|
|
|
# Variable for the image name
|
|
env:
|
|
image_name: node-npm
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "@weekly"
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- .gitea/workflows/${{ env.image_name }}.yaml
|
|
- images/actions/${{ env.image_name }}/**
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
name: Build and push image
|
|
runs-on: ubuntu-latest
|
|
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
|
|
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 }}-${{ env.image_name }}-${{ github.sha }}
|
|
restore-keys: |
|
|
${{ runner.os }}-${{ env.image_name }}-
|
|
|
|
- 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/${{ env.image_name }}
|
|
push: ${{ github.ref == 'refs/heads/main' }}
|
|
tags: |
|
|
git.kjan.de/actions/${{ env.image_name }}:latest
|
|
git.kjan.de/actions/${{ env.image_name }}:${{ 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
|