Skip to content

Temp

Temp #1

Workflow file for this run

name: Temp
on:
workflow_dispatch:
jobs:
temp:
runs-on: macos-13
steps:
- name: Setup (macos M1)
if: matrix.os == 'macos-13'
run: |
brew install grep
brew uninstall --ignore-dependencies [email protected]
echo "Fetch for arm64 -----"
FETCH=$(brew fetch --force --bottle-tag=arm64_monterey [email protected])
echo "Fetched for arm64 -----"
echo "$FETCH"
echo "File for arm64 -----"
FILE=$(brew fetch --force --bottle-tag=arm64_monterey [email protected] | ggrep -oP '(?<=Downloaded to\: ).*')
echo "Filed for arm64 -----"
echo "$FILE"
echo "Installing for arm64 -----"
brew install "$FILE"