We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b44802 commit 1a88c4aCopy full SHA for 1a88c4a
1 file changed
.github/workflows/nightly-Homebrew-build.yml
@@ -3,7 +3,7 @@
3
on:
4
push:
5
paths:
6
- - '**/nightlyHomebrew-build.yml'
+ - '**/nightly-Homebrew-build.yml'
7
pull_request:
8
branches:
9
- develop
@@ -51,13 +51,16 @@ jobs:
51
# the HEAD flags tell Homebrew to build the develop branch fetch via git
52
53
- name: Create bottle
54
- run: brew bottle -v openblas
+ run: |
55
+ brew bottle -v openblas
56
+ mkdir bottles
57
+ mv *.bottle.tar.gz bottles
58
59
- name: Upload bottle
60
uses: actions/upload-artifact@v1
61
with:
62
name: openblas--HEAD.catalina.bottle.tar.gz
- paht: ./*.bottle.*
63
+ path: bottles
64
65
- name: Show linkage
66
run: brew linkage -v openblas
0 commit comments