fix: simplify workflow and add test workflow
Deploy to Dev / deploy-dev (push) Failing after 2s Details
Test Simple Workflow / test (push) Successful in 0s Details

This commit is contained in:
Dev Server 2026-02-12 22:42:48 +03:00
parent dc3d2b5f25
commit 853de5b4ea
2 changed files with 10 additions and 5 deletions

View File

@ -3,15 +3,10 @@ name: Deploy to Dev
on: on:
push: push:
branches: [ main, master, develop, dev ] branches: [ main, master, develop, dev ]
paths-ignore:
- '**.md'
- '.gitignore'
- '.cursor/**'
jobs: jobs:
deploy-dev: deploy-dev:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: ${{ gitea.event_name == 'push' }}
steps: steps:
- name: Deploy to Dev Server - name: Deploy to Dev Server

10
.gitea/workflows/test.yml Normal file
View File

@ -0,0 +1,10 @@
name: Test Simple Workflow
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Test step
run: echo "Workflow triggered successfully!"