Trying restore and save method
Some checks failed
godot-ci export / Windows Export (push) Successful in 1m17s
godot-ci export / Linux Export (push) Successful in 1m16s
godot-ci export / Steam Publish (push) Failing after 1m24s

This commit is contained in:
2025-07-06 12:18:55 -07:00
parent beaad933ba
commit b9b9cf27d1

View File

@ -130,16 +130,15 @@ jobs:
path: build/bin/linux path: build/bin/linux
- name: Restore Cache - name: Restore Cache
uses: https://gitea.com/actions/cache@v3 uses: https://gitea.com/actions/cache/restore@v3
with: with:
path: | path: |
~/steamcmd/config/ ~/steamcmd/
~/steamcmd/ssfn*
./steam_build_output/ ./steam_build_output/
key: steam-cache-${{ runner.os }}-${{ github.ref_name }}-v2 key: steam-cache-${{ runner.os }}-${{ github.ref_name }}-v3
restore-keys: | restore-keys: |
steam-cache-${{ runner.os }}- steam-cache-${{ runner.os }}
steam-cache- steam-cache
- name: Read Cache - name: Read Cache
run: | run: |
@ -168,4 +167,12 @@ jobs:
ls -la ~/ ls -la ~/
echo "Files in steamcmd directory:" echo "Files in steamcmd directory:"
ls -la ~/steamcmd/ ls -la ~/steamcmd/
# ls -la ~/steamcmd/config/ # 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