Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: updated workflow file #42

Merged
merged 1 commit into from
Feb 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/all-contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ jobs:
run: npm install -g pnpm

- name: Set up pnpm global bin directory
run: SHELL=/bin/bash pnpm setup

- name: Add pnpm global bin directory to PATH
run: echo "$(pnpm bin -g)" >> $GITHUB_PATH
run: |
export PNPM_HOME=$HOME/.local/share/pnpm
export PATH=$PNPM_HOME:$PATH
echo "PNPM_HOME=$PNPM_HOME" >> $GITHUB_ENV
echo "$PNPM_HOME" >> $GITHUB_PATH
pnpm setup

- name: Install All Contributors CLI
run: pnpm add -g all-contributors-cli
Expand Down
Loading