You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
unzip mas8.zip -d $MAS_BASE_DIR/ # this is so we cache ONLY the aws download and NOT the full repo
72
+
73
+
# setup build folder
74
+
- name: setup build folder
75
+
run: |
76
+
mkdir $MAS_DIR
77
+
cp -Rf $MAS_BASE_DIR/* $MAS_DIR/
78
+
rm $MAS_DIR/game/scripts.rpa # remove when we can handle scripts rpa
62
79
63
80
# copy over gh files to base
64
81
- name: copy source over
65
-
run: cp -Rf Monika\ After\ Story/* mas0105/
82
+
run: cp -Rf Monika\ After\ Story/* $MAS_DIR/
66
83
67
84
# run sprite checkers
68
85
- name: check sprites
@@ -71,11 +88,19 @@ jobs:
71
88
# lint renpy
72
89
- name: rpy lint
73
90
run: |
74
-
cd renpy
75
-
./renpy.sh "../mas0105/" lint | grep -E -v "^$|Could not find image \(monika [0-9][^[:space:]]+ corresponding to attributes on say statement\.|'monika [0-9][^[:space:]]+' is not an image\.|The image named 'monika [0-9][^[:space:]]+ was not declared\."
91
+
cd $RENPY_DIR
92
+
./renpy.sh "../$MAS_DIR/" lint | grep -E -v "^$|Could not find image \(monika [0-9][^[:space:]]+ corresponding to attributes on say statement\.|'monika [0-9][^[:space:]]+' is not an image\.|The image named 'monika [0-9][^[:space:]]+ was not declared\."
0 commit comments