diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5b747f9..a4b13c8 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: - name: Upload dist for docker job if: github.event_name == 'push' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: admin-ui-dist path: dist/ @@ -58,7 +58,7 @@ jobs: - uses: actions/checkout@v4 - name: Download dist from test job - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: name: admin-ui-dist path: dist diff --git a/.gitea/workflows/deploy-ift.yml b/.gitea/workflows/deploy-ift.yml index 4a39090..680a70b 100644 --- a/.gitea/workflows/deploy-ift.yml +++ b/.gitea/workflows/deploy-ift.yml @@ -16,9 +16,8 @@ env: jobs: deploy-ift-admin: - if: | - github.event_name == 'workflow_dispatch' || - (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') + # Gitea: workflow_run.conclusion часто пустой → job skipped. Проверка образа ниже. + if: github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_run' runs-on: ubuntu-latest timeout-minutes: 30 steps: