Refactor CI workflow to localize job names in Russian and remove deprecated multistep and test workflows. Update artifact upload step to ensure clarity in job descriptions. #6

Merged
RaiLinKey merged 2 commits from fix into test 2026-03-24 14:05:17 +03:00
2 changed files with 35 additions and 15 deletions
Showing only changes of commit b3eaf03627 - Show all commits

View File

@@ -0,0 +1,20 @@
name: Ручная архивация
on:
workflow_dispatch: # только ручной запуск
jobs:
create-archives:
runs-on: ubuntu-latest
steps:
- name: Проверка кода
uses: actions/checkout@v4
- name: Загрузка артифакта
uses: actions/upload-artifact@v3
with:
name: build-artifacts-${{ github.run_id }}
path: |
api/
web/
retention-days: 7

View File

@@ -54,22 +54,22 @@ jobs:
cd web
npm run build
create-archives:
needs: [test-backend, test-frontend]
runs-on: ubuntu-latest
if: github.event_name == 'workflow_dispatch' && always()
steps:
- name: Проверка кода
uses: actions/checkout@v4
# create-archives:
# needs: [test-backend, test-frontend]
# runs-on: ubuntu-latest
# if: github.event_name == 'workflow_dispatch' && always()
# steps:
# - name: Проверка кода
# uses: actions/checkout@v4
- name: Загрузка артифакта
uses: actions/upload-artifact@v3
with:
name: build-artifacts-${{ github.run_id }}
path: |
api/
web/
retention-days: 7
# - name: Загрузка артифакта
# uses: actions/upload-artifact@v3
# with:
# name: build-artifacts-${{ github.run_id }}
# path: |
# api/
# web/
# retention-days: 7
# Явный статус для PR
pr-status: