2024-08-15 14:08:55 +00:00
|
|
|
name: Node ssh
|
2024-07-11 19:54:31 +00:00
|
|
|
on:
|
2024-07-15 16:21:40 +00:00
|
|
|
schedule:
|
|
|
|
- cron: "@weekly"
|
2024-07-11 19:54:31 +00:00
|
|
|
push:
|
2024-08-15 14:08:55 +00:00
|
|
|
branches: [main]
|
2024-07-11 19:54:31 +00:00
|
|
|
paths:
|
|
|
|
- .gitea/workflows/node-ssh.yaml
|
|
|
|
- images/actions/node-ssh/**
|
2024-08-15 14:08:55 +00:00
|
|
|
pull_request:
|
2024-07-11 07:21:15 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2024-07-11 07:45:36 +00:00
|
|
|
name: Build and push image
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: catthehacker/ubuntu:act-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-08-15 09:48:00 +00:00
|
|
|
uses: https://git.kjan.de/actions/checkout@v4
|
2024-07-11 07:45:36 +00:00
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
2024-08-15 10:03:15 +00:00
|
|
|
uses: https://git.kjan.de/actions/setup-buildx-action@v3
|
2024-07-11 07:45:36 +00:00
|
|
|
|
2024-08-15 14:08:55 +00:00
|
|
|
- name: Login to local Docker Registry
|
2024-08-15 10:17:04 +00:00
|
|
|
uses: https://git.kjan.de/actions/login-action@v3
|
2024-07-11 07:45:36 +00:00
|
|
|
with:
|
|
|
|
registry: git.kjan.de
|
|
|
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
|
|
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
|
|
|
|
2024-08-15 14:08:55 +00:00
|
|
|
- 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-08-15 16:12:12 +00:00
|
|
|
- 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-
|
|
|
|
|
2024-07-11 07:45:36 +00:00
|
|
|
- name: Build and push
|
2024-08-15 14:21:52 +00:00
|
|
|
uses: https://git.kjan.de/actions/build-push-action@v6
|
2024-07-11 07:45:36 +00:00
|
|
|
with:
|
2024-08-15 16:12:12 +00:00
|
|
|
cache-from: type=local,src=/tmp/.buildx-cache
|
|
|
|
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
|
2024-07-11 07:45:36 +00:00
|
|
|
context: ./images/actions/node-ssh
|
2024-08-15 14:08:55 +00:00
|
|
|
push: ${{ github.ref == 'refs/heads/main' }}
|
2024-07-11 07:45:36 +00:00
|
|
|
tags: |
|
|
|
|
git.kjan.de/actions/node-ssh:latest
|
2024-08-15 16:33:03 +00:00
|
|
|
git.kjan.de/actions/node-ssh:${{ gitea.sha }}
|
2024-08-15 16:12:12 +00:00
|
|
|
|
|
|
|
- # 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
|