main
Some checks failed
Deploy Frontend / deploy (push) Has been cancelled

This commit is contained in:
2026-02-05 01:34:13 +03:00
commit 6e3bee17ef
52 changed files with 12306 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
name: Deploy Frontend
on:
push:
branches:
- main
jobs:
deploy:
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build and Deploy Docker
run: |
docker build \
--build-arg VITE_API_URL="http://api-digicraft.bilgich.com" \
-t ui-digicraft .
docker stop ui-digicraft-container || true
docker rm ui-digicraft-container || true
docker run -d \
--name ui-digicraft-container \
-p 1505:80 \
--restart always \
--network gitea-server_gitea \
ui-digicraft