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

38 lines
1.0 KiB
YAML
Raw Normal View History

2024-07-11 06:18:29 +00:00
name: Build and Push Image
2024-07-11 19:56:50 +00:00
on:
2024-07-15 16:22:10 +00:00
schedule:
- cron: "@weekly"
2024-07-11 19:56:50 +00:00
push:
paths:
- .gitea/workflows/rust-node.yaml
- images/actions/rust-node/**
2024-07-11 06:18:29 +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:51:19 +00:00
uses: https://git.kjan.de/actions/checkout@v4
2024-07-11 06:18:29 +00:00
- name: Set up Docker Buildx
2024-08-15 10:08:21 +00:00
uses: https://git.kjan.de/actions/setup-buildx-action@v3
2024-07-11 06:18:29 +00:00
- name: Login to Docker Registry
2024-08-15 10:20:34 +00:00
uses: https://git.kjan.de/actions/login-action@v3
2024-07-11 06:18:29 +00:00
with:
registry: git.kjan.de
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build and push
2024-08-15 10:35:02 +00:00
uses: https://git.kjan.de/actions/build-push-action@v5
2024-07-11 06:18:29 +00:00
with:
context: ./images/actions/rust-node
2024-08-15 10:52:45 +00:00
push: ${{ github.ref == 'refs/heads/main' }}
2024-07-11 06:18:29 +00:00
tags: |
git.kjan.de/actions/rust-node:latest
git.kjan.de/actions/rust-node:${{ gitea.run_number }}