Skip to content

Commit 26c0a65

Browse files
sizov-kirillkirill-sizov
and
kirill-sizov
authored
Workflows: fix typo (cvat-ai#4939)
Co-authored-by: kirill-sizov <[email protected]>
1 parent 393392c commit 26c0a65

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed

.github/workflows/full.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
docker load --input /tmp/cvat_server/image.tar
164164
docker load --input /tmp/cvat_ui/image.tar
165165
docker tag cvat/server:latest cvat/server:dev
166-
docker tag cvat/ui:latest cvat/server:dev
166+
docker tag cvat/ui:latest cvat/ui:dev
167167
docker image ls -a
168168
169169
- name: Running REST API and SDK tests
@@ -193,11 +193,9 @@ jobs:
193193
- name: Uploading "cvat" container logs as an artifact
194194
if: failure()
195195
uses: actions/upload-artifact@v2
196-
env:
197-
LOGS_DIR: "${{ github.workspace }}/rest_api"
198196
with:
199197
name: container_logs
200-
path: $LOGS_DIR
198+
path: "${{ github.workspace }}/rest_api"
201199

202200
unit_testing:
203201
needs: build
@@ -339,13 +337,13 @@ jobs:
339337
npx cypress run \
340338
--headed \
341339
--browser chrome \
342-
--env coverage=false
340+
--env coverage=false \
343341
--config-file cypress_canvas3d.json \
344342
--spec 'cypress/integration/${{ matrix.specs }}/**/*.js,cypress/integration/remove_users_tasks_projects_organizations.js'
345343
else
346344
npx cypress run \
347345
--browser chrome \
348-
--env coverage=false
346+
--env coverage=false \
349347
--spec 'cypress/integration/${{ matrix.specs }}/**/*.js,cypress/integration/remove_users_tasks_projects_organizations.js'
350348
fi
351349

.github/workflows/main.yml

+3-6
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,9 @@ jobs:
159159
- name: Uploading "cvat" container logs as an artifact
160160
if: failure()
161161
uses: actions/upload-artifact@v2
162-
env:
163-
LOGS_DIR: "${{ github.workspace }}/rest_api"
164162
with:
165163
name: container_logs
166-
path: $LOGS_DIR
164+
path: "${{ github.workspace }}/rest_api"
167165

168166
unit_testing:
169167
needs: build
@@ -220,11 +218,10 @@ jobs:
220218
- name: Uploading "cvat" container logs as an artifact
221219
if: failure()
222220
uses: actions/upload-artifact@v2
223-
env:
224-
LOGS_DIR: "${{ github.workspace }}/unit_testing"
225221
with:
226222
name: container_logs
227-
path: $LOGS_DIR
223+
path: "${{ github.workspace }}/unit_testing"
224+
228225

229226
e2e_testing:
230227
needs: build

0 commit comments

Comments
 (0)