Skip to content

Commit b6fffb8

Browse files
dploegerDennis Ploeger
authored andcommitted
fix: Fixed test workflow
1 parent 0650260 commit b6fffb8

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,17 @@ jobs:
7878
- name: Prepare flavour container
7979
run: |
8080
cat build/Dockerfile.prefix > Dockerfile
81-
cat "flavour/${{ matrix.flavour }}/Dockerfile.flavour" >> Dockerfile
81+
cat "flavour/${{ matrix.flavour.name }}/Dockerfile.flavour" >> Dockerfile
82+
83+
# Download mo
84+
curl -sSL https://raw.githubusercontent.com/tests-always-included/mo/master/mo -o mo
85+
chmod +x mo
86+
87+
cat build/Dockerfile.suffix.mo | BUILD_DATE=$(date -Ins) FLAVOUR=${{ matrix.flavour.name }} ./mo > build/Dockerfile.suffix
88+
8289
cat build/Dockerfile.suffix >> Dockerfile
90+
91+
rm mo
8392
- name: build flavour container
8493
id: build-and-push
8594
uses: docker/build-push-action@v4.0.0

0 commit comments

Comments
 (0)