We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c88b6b9 commit 9f939a9Copy full SHA for 9f939a9
.github/workflows/test.yml
@@ -32,9 +32,15 @@ jobs:
32
repository: BuckarooBanzay/mtt
33
path: mtt
34
35
+ - uses: actions/checkout@v4
36
+ with:
37
+ repository: BlockySurvival/bls_test_nodenames
38
+ path: bls_test_nodenames
39
+
40
- name: Update minetest.conf and world.mt
41
run: |-
42
echo 'load_mod_mtt = true' >> world.mt
43
+ echo 'load_mod_bls_test_nodenames = true' >> world.mt
44
echo 'mtt_enable = true' >> minetest.conf
45
echo 'mtt_export_nodenames = true' >> minetest.conf
46
touch nodenames.txt
@@ -43,7 +49,8 @@ jobs:
49
run: docker-compose up --exit-code-from testserver
50
51
- name: Upload nodenames.txt
52
+ if: ${{ endsWith(matrix.ENGINE_IMAGE, '5.7.0') }}
53
uses: actions/upload-artifact@v4
47
54
with:
48
- name: nodenames
55
+ name: nodenames-${{ matrix.ENGINE_IMAGE }}
56
path: nodenames.txt
0 commit comments