Brew formula update for xiond version v19.0.0 #216
Workflow file for this run
This file contains hidden or 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
name: brew install | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
install: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
version: | |
# - "0.1.0" | |
# - "0.3.2" | |
# - "0.3.3" | |
# - "0.3.4" | |
# - "0.3.7" | |
# - "0.3.8" | |
# - "0.3.9" | |
# - "1.0.0" | |
# - "2.0.0" | |
# - "3.0.0" | |
# - "3.1.0" | |
# - "4.0.0" | |
# - "5.0.0" | |
# - "6.0.0" | |
# - "7.0.0" | |
# - "8.0.0" | |
# - "8.0.1" | |
# - "9.0.0" | |
# - "9.0.1" | |
# - "10.0.0" | |
# - "11.0.1" | |
- "12.0.0" | |
- "12" | |
- "13.0.0" | |
- "13.0.1" | |
- "13" | |
- "14.0.0" | |
- "14.1.0" | |
- "14" | |
- "14.1.1" | |
- "15.0.0" | |
- "15" | |
- "16.0.0" | |
- "16" | |
- "17.0.0" | |
- "17.1.0" | |
- "17" | |
- "18.0.0" | |
- "18" | |
- "null" | |
env: | |
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Homebrew | |
run: | | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
- name: Install Xiond | |
run: | | |
echo "Matrix OS: ${{ matrix.os }}" | |
echo "Matrix version: ${{ matrix.version }}" | |
if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then | |
export PATH="/home/linuxbrew/.linuxbrew/bin:$PATH" | |
fi | |
brew tap burnt-labs/xion | |
if [[ "${{ matrix.version }}" == "null" ]]; then | |
echo "Installing latest version of xiond" | |
brew install xiond | |
else | |
echo "Installing xiond version ${{ matrix.version }}" | |
brew install xiond@${{ matrix.version }} | |
fi | |
xiond version --long |