Skip to content

Commit

Permalink
refactor: force update of /Users/alexanderlow path for gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
xanderjl committed Nov 19, 2024
1 parent 348fa2b commit 247dee2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/changesets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ jobs:
# - name: setup pnpm config
# run: pnpm config set store-dir $PNPM_CACHE_FOLDER
- name: Setup npmrc
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > .npmrc
run: |
cat << EOF > "$HOME/.npmrc"
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > .npmrc
EOF
- name: install dependencies
run: pnpm install
- name: create and publish versions
Expand Down

0 comments on commit 247dee2

Please sign in to comment.