Skip to content

Commit

Permalink
Update uploadTestflight.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Roy-wonji authored Aug 31, 2024
1 parent bac9c81 commit 99920c9
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/uploadTestflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,24 @@ jobs:
- name: Install Tuist
run: curl -Ls https://uninstall.tuist.io | bash

- name: Install Mise
# Install Mise and activate it properly
- name: Install and Activate Mise
run: |
curl https://mise.run | sh
# Add Mise shims directory to PATH for immediate access
echo 'export PATH="$HOME/.local/share/mise/shims:$PATH"' >> $GITHUB_ENV
# Activate Mise in the current shell session
eval "$(/Users/runner/.local/bin/mise activate bash)"
# Check Mise installation status
mise doctor
mise install [email protected]
mise use [email protected]
# Install Tuist using Mise
- name: Install Specific Tuist Version
run: mise install [email protected]

# Use the installed Tuist version
- name: Use Specific Tuist Version
run: mise use -g [email protected]



Expand Down

0 comments on commit 99920c9

Please sign in to comment.