feat(fish/config): add homebrew paths for arm64 and x86_64 #309
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
name: fish | |
on: | |
push: | |
paths: | |
- fish/** | |
- .github/workflows/fish.yaml | |
pull_request: | |
paths: | |
- aqua/ | |
- .github/workflows/fish.yaml | |
jobs: | |
fich-ci: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
env: | |
AQUA_CONFIG: aqua/aqua.yaml | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/env-setup | |
with: | |
GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }} | |
aqua_config: ${{ env.AQUA_CONFIG }} | |
- name: setup fish | |
uses: fish-actions/[email protected] | |
- name: add path | |
run: dotfiles link . | |
- name: test fish/config.fish | |
run: sh -c "fish -c exit" | |
- name: install fisher plugins | |
run: sh -c "fish -c 'curl -sL https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | source && fisher install jorgebucaran/fisher && git checkout . && fisher update && exit'" | |