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

21 lines
498 B
YAML
Raw Normal View History

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