Skip to content

Commit

Permalink
Install pnpm on github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
FelippeChemello committed Aug 24, 2024
1 parent a2fbc25 commit a65e484
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/build-video.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ env:
INSTAGRAM_PASSWORD: ${{ secrets.INSTAGRAM_PASSWORD }}
YOUTUBE_REFRESH_TOKEN: ${{ secrets.YOUTUBE_REFRESH_TOKEN }}
GOOGLE_MAKERSUITE_API_KEY: ${{ secrets.GOOGLE_MAKERSUITE_API_KEY }}
IMAGE_GENERATOR_URL: ${{ secrets.IMAGE_GENERATOR_URL }}
# ACTIONS_RUNNER_DEBUG: true
# ACTIONS_STEP_DEBUG: true

Expand All @@ -35,6 +36,11 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 8

- name: podcast-maker CLI cache
uses: actions/cache@v3
Expand Down Expand Up @@ -95,7 +101,9 @@ jobs:
node-version: 18

- name: Install pnpm
run: npm install -g pnpm
uses: pnpm/action-setup@v4
with:
version: 8

- name: Install FFMPEG
uses: FedericoCarboni/setup-ffmpeg@v1
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/create-content-file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
node-version: 18

- name: Install pnpm
run: npm install -g pnpm
uses: pnpm/action-setup@v4
with:
version: 8

- name: Global output
id: global
Expand Down

0 comments on commit a65e484

Please sign in to comment.