Skip to content

Commit

Permalink
CI: cache only downloaded files
Browse files Browse the repository at this point in the history
  • Loading branch information
johnyf committed Jun 24, 2022
1 parent c6a5c86 commit 84f6874
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/setup_shell_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ def _env_vars(tlapm_version: str) -> dict:
raise ValueError(
'unexpected operating system: '
f'{sys.platform = }')
downloads = f'tlaps-{tlapm_version}-{tail}'
installer = f'{downloads}-inst.bin'
prefix = f'tlaps-{tlapm_version}-{tail}'
installer = f'{prefix}-inst.bin'
downloads = f'{prefix}/download'
return dict(
TLAPM_VERSION=tlapm_version,
INSTALLER=installer,
Expand Down

0 comments on commit 84f6874

Please sign in to comment.