We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87e377e commit 76eb8a7Copy full SHA for 76eb8a7
.github/workflows/temp.yml
@@ -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