Jan Gleytenhoover
aa27f16d3c
Some checks failed
PHP 8.2 / Build and push image (pull_request) Successful in 45s
Node ssh / Build and push image (pull_request) Successful in 56s
PHP deployer / Build and push image (pull_request) Successful in 26s
Node npm / Build and push image (pull_request) Failing after 58s
Rust node / Build and push image (pull_request) Successful in 5m13s
48 lines
1.4 KiB
YAML
48 lines
1.4 KiB
YAML
name: Node npm
|
|
on:
|
|
schedule:
|
|
- cron: "@weekly"
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- .gitea/workflows/node-npm.yaml
|
|
- images/actions/node-npm/**
|
|
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: Build and push
|
|
uses: https://git.kjan.de/actions/build-push-action@v6
|
|
with:
|
|
cache-from: type=registry,ref=git.kjan.de/actions/node-npm:buildcache
|
|
cache-to: type=registry,ref=git.kjan.de/actions/node-npm:buildcache,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.run_number }}
|