Skip to content

Commit

Permalink
Merge pull request #493 from stepchowfun/read-remote-cache
Browse files Browse the repository at this point in the history
Fix a bug in the GitHub action
  • Loading branch information
stepchowfun authored Jan 5, 2024
2 parents 1523c32 + f756b1d commit 0664255
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/toast/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ childProcess.execSync(
const taskArgs = tasks === null ? [] : tasks;
const fileArgs = file === null ? [] : ['--file', file];
const dockerRepoArgs = dockerRepo === null ? [] : ['--docker-repo', dockerRepo];
const readRemoteCacheArgs = readRemoteCache ? ['--write-remote-cache', 'true'] : [];
const readRemoteCacheArgs = readRemoteCache ? ['--read-remote-cache', 'true'] : [];
const writeRemoteCacheArgs = writeRemoteCache ? ['--write-remote-cache', 'true'] : [];

// Run Toast.
Expand Down

0 comments on commit 0664255

Please sign in to comment.