Files
microservicios_python/.gitea/workflows/build.yml
dfcarvajal 882e728efb
Some checks failed
build / build-and-push (push) Failing after 4s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s
TEST: actions
2025-12-16 21:32:29 +01:00

23 lines
486 B
YAML

name: build
on:
push:
branches:
- main
jobs:
build-and-push:
runs-on: [k8s, kaniko]
env:
DOCKER_HOST: tcp://localhost:2375
DOCKER_TLS_VERIFY: 0
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build and push Docker image
run: |
docker build -t nexus.rancherk3.duckdns.org/tfm/microservicespython:latest .
docker push nexus.rancherk3.duckdns.org/tfm/microservicespython:latest