We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79a9e7b commit 2d8f9d3Copy full SHA for 2d8f9d3
1 file changed
.github/workflows/mas_check.yml
@@ -23,6 +23,7 @@ jobs:
23
24
env:
25
MAS_RENPY_VER: 8.1.1
26
+ MAS_BASE_DIR: masbase
27
MAS_DIR: mas
28
RENPY_DIR: renpy
29
@@ -59,15 +60,17 @@ jobs:
59
60
id: cache-mas
61
uses: actions/cache@v4
62
with:
- path: mas/
63
- key: mas
+ path: masbase/
64
+ key: masbase
65
66
- name: download base MAS
67
if: steps.cache-mas.outputs.cache-hit != 'true'
68
run: |
69
wget https://monika-after-story.s3.us-west-2.amazonaws.com/ddlc/mas8.zip
70
+ mkdir $MAS_BASE_DIR
71
+ unzip mas8.zip -d $MAS_BASE_DIR/ # this is so we cache ONLY the aws download and NOT the full repo
72
mkdir $MAS_DIR
- unzip mas8.zip -d $MAS_DIR/
73
+ cp -Rf $MAS_BASE_DIR/* $MAS_DIR/
74
rm $MAS_DIR/game/scripts.rpa # remove when we can handle scripts rpa
75
76
# copy over gh files to base
0 commit comments