Skip to content

Commit

Permalink
Update actions to use pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
tekrei committed Jan 15, 2025
1 parent 3c24266 commit 6c4dd9d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:
distribution: temurin
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
node-version: 22
cache: 'pnpm'
- uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: Install dependencies
run: yarn install
run: pnpm install
- name: Build package
run: yarn build:android --local
run: pnpm build:android --local
- uses: WyriHaximus/github-action-get-previous-tag@v1
id: currenttag
- name: Rename AAB
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
node-version: 22
cache: 'pnpm'
- uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: Install dependencies
run: yarn install
run: pnpm install
- name: Build package
run: yarn build:ios
run: pnpm build:ios

0 comments on commit 6c4dd9d

Please sign in to comment.