diff --git a/.github/actions/setup-repo/action.yml b/.github/actions/setup-repo/action.yml index 2ca622bd..c3162769 100644 --- a/.github/actions/setup-repo/action.yml +++ b/.github/actions/setup-repo/action.yml @@ -2,9 +2,9 @@ name: Setup repo description: Runs all steps to setup the repo (install node_modules, build, etc...) inputs: registry-token: - description: 'PAT to access registries' + description: "PAT to access registries" runs: - using: 'composite' + using: "composite" steps: - name: Get yarn cache directory path id: yarn-cache-dir-path @@ -15,7 +15,7 @@ runs: - uses: actions/setup-node@v3 with: - node-version: '20' + node-version: "20" - uses: actions/cache@v2 id: yarn-cache @@ -30,6 +30,6 @@ runs: - name: Install dependencies shell: bash - run: echo "//npm.pkg.github.com/:_authToken=$GH_REGISTRY_ACCESS_TOKEN" >> .npmrc && yarn install --frozen-lockfile --verbose && rm -f .npmrc + run: echo "//npm.pkg.github.com/:_authToken=$SDK_READ_ACCESS_TOKEN" >> .npmrc && yarn install --frozen-lockfile --verbose && rm -f .npmrc env: - GH_REGISTRY_ACCESS_TOKEN: ${{ inputs.registry-token }} + SDK_READ_ACCESS_TOKEN: ${{ inputs.registry-token }}