Skip to content

Commit

Permalink
Change secrets.TURBO_TEAM to vars.TURBO_TEAM
Browse files Browse the repository at this point in the history
  • Loading branch information
jeniabrook committed May 16, 2023
1 parent 7869188 commit ad1c85f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/pages/repo/docs/ci/github-actions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Create file called `.github/workflows/ci.yml` in your repository with the follow
# To use Remote Caching, uncomment the next lines and follow the steps below.
# env:
# TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
# TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
# TURBO_TEAM: ${{ vars.TURBO_TEAM }}
# TURBO_REMOTE_ONLY: true

steps:
Expand Down Expand Up @@ -106,7 +106,7 @@ Create file called `.github/workflows/ci.yml` in your repository with the follow
# To use Remote Caching, uncomment the next lines and follow the steps below.
# env:
# TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
# TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
# TURBO_TEAM: ${{ vars.TURBO_TEAM }}

steps:
- name: Check out code
Expand Down Expand Up @@ -149,7 +149,7 @@ Create file called `.github/workflows/ci.yml` in your repository with the follow
# To use Remote Caching, uncomment the next lines and follow the steps below.
# env:
# TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
# TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
# TURBO_TEAM: ${{ vars.TURBO_TEAM }}

steps:
- name: Check out code
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
# To use Turborepo Remote Caching, set the following environment variables for the job.
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}

steps:
- name: Check out code
Expand Down

0 comments on commit ad1c85f

Please sign in to comment.