We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43532b6 commit 3e49816Copy full SHA for 3e49816
.github/workflows/build.yml
@@ -9,15 +9,8 @@ jobs:
9
steps:
10
- uses: actions/checkout@v4
11
12
- - name: Build stepik_export image
+ - name: Build common_grade_export image
13
if: ${{ !cancelled() }}
14
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
22
23
- ./build.sh checker_export
+ cd common_grade_export
+ docker build -t 'grade_exporter:latest' .
build.sh
@@ -1,6 +1,7 @@
1
#!/bin/bash
2
3
#Builds image
4
+# Doesn't work for common_grade_export
5
6
dir=${1}
7
docker build -t ${dir}_parser ${dir}/.
0 commit comments