runner-images/.gitea/workflows/node-npm.yaml

48 lines
1.3 KiB
YAML
Raw Normal View History

name: Node npm
2024-07-13 21:46:22 +00:00
on:
2024-07-15 16:21:30 +00:00
schedule:
- cron: "@weekly"
2024-07-13 21:46:22 +00:00
push:
branches: [main]
2024-07-13 21:46:22 +00:00
paths:
- .gitea/workflows/node-npm.yaml
- images/actions/node-npm/**
pull_request:
2024-07-13 21:46:22 +00:00
jobs:
build:
name: Build and push image
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
2024-08-15 09:22:33 +00:00
uses: https://git.kjan.de/actions/checkout@v4
2024-07-13 21:46:22 +00:00
- name: Set up Docker Buildx
2024-08-15 10:00:12 +00:00
uses: https://git.kjan.de/actions/setup-buildx-action@v3
2024-07-13 21:46:22 +00:00
- name: Login to local Docker Registry
2024-08-15 10:15:53 +00:00
uses: https://git.kjan.de/actions/login-action@v3
2024-07-13 21:46:22 +00:00
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 }}
2024-07-13 21:46:22 +00:00
- name: Build and push
uses: https://git.kjan.de/actions/build-push-action@v6
2024-07-13 21:46:22 +00:00
with:
2024-08-15 14:36:31 +00:00
cache-from: type=registry,ref=git.kjan.de/actions/node-npm:latest
2024-08-15 14:35:04 +00:00
cache-to: type=inline
2024-07-13 21:46:22 +00:00
context: ./images/actions/node-npm
push: ${{ github.ref == 'refs/heads/main' }}
2024-07-13 21:46:22 +00:00
tags: |
git.kjan.de/actions/node-npm:latest
git.kjan.de/actions/node-npm:${{ gitea.run_number }}