Jan Klattenhoff
7e4b1f0a21
Some checks failed
Build and Push Image / Build and push image (push) Has been cancelled
21 lines
498 B
YAML
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 }}
|