docker-devops-helper/.gitea/workflows/dev.yaml
Roger Sikorski 76f3627ad6
Some checks failed
/ build (push) Failing after 8s
nodejs installation added
2023-07-23 19:30:29 +02:00

25 lines
613 B
YAML

on:
push:
branches-ignore:
- main
jobs:
build:
runs-on: k3s
container:
image: docker:24-cli
steps:
- run: apk --no-cache add nodejs
# - uses: actions/checkout@v3
- name: docker login
uses: docker/login-action@v2
with:
registry: "gitea.sikorski.cloud"
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
tags: gitea.sikorski.cloud/rogersik/docker-admin-helper:development