Skip to content

Commit 83194a6

Browse files
committed
Cache steamcmd download
1 parent 29f71d0 commit 83194a6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

action.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,15 @@ inputs:
2121
runs:
2222
using: "composite"
2323
steps:
24+
- name: Cache SteamCMD
25+
id: cache-steamcmd
26+
uses: actions/cache@v4
27+
with:
28+
path: ~/Steam
29+
key: steamcmd-${{ runner.os }}
30+
2431
- name: Download SteamCMD
32+
if: steps.cache-steamcmd.outputs.cache-hit != 'true'
2533
shell: bash
2634
run: |
2735
sudo apt-get update

0 commit comments

Comments
 (0)