diff --git a/.gitea/workflows/godot-ci.yml b/.gitea/workflows/godot-ci.yml index 7b8c935..e2563a6 100644 --- a/.gitea/workflows/godot-ci.yml +++ b/.gitea/workflows/godot-ci.yml @@ -130,16 +130,15 @@ jobs: path: build/bin/linux - name: Restore Cache - uses: https://gitea.com/actions/cache@v3 + uses: https://gitea.com/actions/cache/restore@v3 with: path: | - ~/steamcmd/config/ - ~/steamcmd/ssfn* + ~/steamcmd/ ./steam_build_output/ - key: steam-cache-${{ runner.os }}-${{ github.ref_name }}-v2 + key: steam-cache-${{ runner.os }}-${{ github.ref_name }}-v3 restore-keys: | - steam-cache-${{ runner.os }}- - steam-cache- + steam-cache-${{ runner.os }} + steam-cache - name: Read Cache run: | @@ -168,4 +167,12 @@ jobs: ls -la ~/ echo "Files in steamcmd directory:" ls -la ~/steamcmd/ - # ls -la ~/steamcmd/config/ \ No newline at end of file + # ls -la ~/steamcmd/config/ + + - name: Save Cache + uses: https://gitea.com/actions/cache/save@v3 + with: + path: | + ~/steamcmd/ + ./steam_build_output/ + key: steam-cache-${{ runner.os }}-${{ github.ref_name }}-v3 \ No newline at end of file