19 lines
331 B
YAML
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
|