Skip to content

Commit 3e49816

Browse files
update build CI
1 parent 43532b6 commit 3e49816

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,8 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v4
1111

12-
- name: Build stepik_export image
12+
- name: Build common_grade_export image
1313
if: ${{ !cancelled() }}
1414
run: |
15-
./build.sh stepik_export
16-
- name: Build moodle_export image
17-
if: ${{ !cancelled() }}
18-
run: |
19-
./build.sh moodle_export
20-
- name: Build checker_export image
21-
if: ${{ !cancelled() }}
22-
run: |
23-
./build.sh checker_export
15+
cd common_grade_export
16+
docker build -t 'grade_exporter:latest' .

build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22

33
#Builds image
4+
# Doesn't work for common_grade_export
45

56
dir=${1}
67
docker build -t ${dir}_parser ${dir}/.

0 commit comments

Comments
 (0)