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

39 lines
1.0 KiB
YAML
Raw Normal View History

2024-08-15 11:08:09 +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:
paths:
- .gitea/workflows/node-ssh.yaml
- images/actions/node-ssh/**
2024-08-15 11:00:13 +00:00
pull_request:
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
- name: Login to 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 }}
- name: Build and push
2024-08-15 10:29:55 +00:00
uses: https://git.kjan.de/actions/build-push-action@v5
2024-07-11 07:45:36 +00:00
with:
context: ./images/actions/node-ssh
2024-08-15 10:51:54 +00:00
push: ${{ github.ref == 'refs/heads/main' }}
2024-07-11 07:45:36 +00:00
tags: |
git.kjan.de/actions/node-ssh:latest
git.kjan.de/actions/node-ssh:${{ gitea.run_number }}