-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|
||
|
||
|
||
|