Skip to content

Commit 76eb8a7

Browse files
committed
fix: add temp workflow
1 parent 87e377e commit 76eb8a7

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/temp.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Temp
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
temp:
8+
runs-on: macos-13
9+
steps:
10+
- name: Setup (macos M1)
11+
if: matrix.os == 'macos-13'
12+
run: |
13+
brew install grep
14+
brew uninstall --ignore-dependencies [email protected]
15+
echo "Fetch for arm64 -----"
16+
FETCH=$(brew fetch --force --bottle-tag=arm64_monterey [email protected])
17+
echo "Fetched for arm64 -----"
18+
echo "$FETCH"
19+
echo "File for arm64 -----"
20+
FILE=$(brew fetch --force --bottle-tag=arm64_monterey [email protected] | ggrep -oP '(?<=Downloaded to\: ).*')
21+
echo "Filed for arm64 -----"
22+
echo "$FILE"
23+
echo "Installing for arm64 -----"
24+
brew install "$FILE"

0 commit comments

Comments
 (0)