🎬 Installation Demo #71
Replies: 4 comments 1 reply
-
Another option, if you're not a Homebrew user, is to build from source.
|
Beta Was this translation helpful? Give feedback.
-
If anyone is looking for how to use/install - name: Cache Rugby
id: cache-rugby
uses: actions/cache@v3
with:
path: /usr/local/bin/rugby
key: CachedRugby-default
- name: Install Rugby
if: steps.cache-rugby.outputs.cache-hit != 'true'
run: |
git clone https://github.com/swiftyfinch/Rugby.git
cd Rugby
swift build -c release
sudo cp .build/x86_64-apple-macosx/release/rugby /usr/local/bin
- name: Cache Pods
uses: actions/cache@v3
with:
path: |
.rugby/build
.rugby/cache.yml
key: ${{ runner.os }}-CachedPods-${{ hashFiles('Podfile.lock') }}
- name: Pre-build Pods
run: rugby |
Beta Was this translation helpful? Give feedback.
-
I have also returned ability to download binary with Homebrew 🍺 |
Beta Was this translation helpful? Give feedback.
-
I close this discussion, because 🏈 Rugby will have less ways to install soon. The whole new information will be available from the main README. Thanks everyone for collaboration! |
Beta Was this translation helpful? Give feedback.
-
Hello! I've prepared 🎬 installation Demo. Sometimes that format is easier than text.
Preconditions: You need to install Brew 🍺 if you don't have.
Download binary with Homebrew 🍺
Build from source code with Mint 🌱
You can install concrete version:
Dev version:
Demo Steps
brew install mint
mint install swiftyfinch/rugby
$PATH
💬 Feel free to ask any questions in this discussion.
Installation.Demo.mp4
Build from source code without any package manager (thx @alexfu)
Download binary without any package manager (e.g. v1.17.3)
Beta Was this translation helpful? Give feedback.
All reactions