All checks were successful
Harita Build ve Deploy / build-and-deploy (push) Successful in 20s
32 lines
893 B
YAML
32 lines
893 B
YAML
name: Harita Build ve Deploy
|
||
run-name: ${{ gitea.actor }} Harita Yayınlanıyor 🟢
|
||
on: [push]
|
||
|
||
jobs:
|
||
build-and-deploy:
|
||
runs-on: ubuntu-latest
|
||
|
||
# DOCKER_HOST tanımı KALDIRILDI!
|
||
steps:
|
||
- name: Kodu Çek (Checkout)
|
||
uses: actions/checkout@v3
|
||
|
||
# Sadece Docker'ı başlatmak kalıyor
|
||
- name: Docker Buildx Kurulumu
|
||
uses: docker/setup-buildx-action@v3
|
||
|
||
- name: Docker Login (Gitea Registry)
|
||
uses: docker/login-action@v3
|
||
with:
|
||
registry: git.konstantiniyye.studio
|
||
username: gitea_admin
|
||
password: ${{ secrets.REGISTRY_TOKEN }}
|
||
|
||
- name: Docker Build ve Push
|
||
uses: docker/build-push-action@v5
|
||
with:
|
||
context: .
|
||
push: true
|
||
tags: git.konstantiniyye.studio/gitea_admin/dogu:latest
|
||
cache-from: type=gha
|
||
cache-to: type=gha,mode=max |