-
Notifications
You must be signed in to change notification settings - Fork 2k
Description
What is the improvement or update you wish to see?
On this documentation: https://turbo.build/docs/guides/ci-vendors/github-actions
I believe there are two errors:
Issue 1: Hobby accounts should use the default team, and not the username
The documentation states:
Your Team URL can be found inside your team's general project settings from the dashboard. If you're using a Hobby Plan, you can use your username. Your username can be found in your Vercel Personal Account Settings
I was able to get remote caching to work with the Default Team from settings and not my username:
Issue 2: The yaml has some stray characters
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} // [!code highlight]
TURBO_TEAM: ${{ vars.TURBO_TEAM }} // [!code highlight]
has extra characters ( // [!code highlight]
) that made remote caching not work. I didn't notice these at first and I was getting this error:
WARNING Insufficient permissions to write to remote cache. Please verify that your role has write access for Remote Cache Artifact at https://vercel.com/docs/accounts/team-members-and-roles/access-roles/team-level-roles?resource=Remote+Cache+Artifact
I was able to fix the error by removing // [!code highlight]
Is there any context that might help us understand?
n/a