Files
eye/.gitea/workflows/deploy.yaml
almazlar 282b5f4d19
All checks were successful
Docker Build and Push / build-and-push (push) Successful in 51s
feat: Initialize a React application with Vite for image analysis and translation, configured with Docker and Gitea CI/CD.
2026-02-08 23:36:40 +03:00

18 lines
511 B
YAML

name: Docker Build and Push
on: [push]
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Login to Gitea Registry
run: echo ${{ secrets.ACCESS_TOKEN }} | docker login git.almazlar.com -u ${{ gitea.actor }} --password-stdin
- name: Build and Push
run: |
docker build -t git.almazlar.com/${{ gitea.repository }}:latest .
docker push git.almazlar.com/${{ gitea.repository }}:latest