Files
justin-leroy.fr/.gitea/workflows/deploy.yml
justin e9daa79ec2
All checks were successful
Build and Push Docker / build (push) Successful in 17s
test build container
2025-09-21 20:27:52 +02:00

19 lines
331 B
YAML

name: Build and Push Docker
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and Push
run: |
docker build -t localhost:5000/mon-app:latest .
docker push localhost:5000/mon-app:latest