runner-images/.gitea/workflows/node-ssh.yaml
Jan Klattenhoff 7e4b1f0a21
Some checks failed
Build and Push Image / Build and push image (push) Has been cancelled
Try reusable workflows
2024-07-11 08:49:28 +02:00

21 lines
498 B
YAML

name: Build and Push Image
on: [ push ]
jobs:
build:
name: Build and push image
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
steps:
- uses: ./.gitea/workflows/setup-builder.yaml
- name: Build and push
uses: docker/build-push-action@v5
with:
context: ./images/actions/node-ssh
push: true
tags: |
git.kjan.de/actions/node-ssh:latest
git.kjan.de/actions/node-ssh:${{ gitea.run_number }}