Fix bottle upload problem & typo
This commit is contained in:
parent
0b44802164
commit
1a88c4ab26
|
@ -3,7 +3,7 @@
|
|||
on:
|
||||
push:
|
||||
paths:
|
||||
- '**/nightlyHomebrew-build.yml'
|
||||
- '**/nightly-Homebrew-build.yml'
|
||||
pull_request:
|
||||
branches:
|
||||
- develop
|
||||
|
@ -51,13 +51,16 @@ jobs:
|
|||
# the HEAD flags tell Homebrew to build the develop branch fetch via git
|
||||
|
||||
- name: Create bottle
|
||||
run: brew bottle -v openblas
|
||||
run: |
|
||||
brew bottle -v openblas
|
||||
mkdir bottles
|
||||
mv *.bottle.tar.gz bottles
|
||||
|
||||
- name: Upload bottle
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: openblas--HEAD.catalina.bottle.tar.gz
|
||||
paht: ./*.bottle.*
|
||||
path: bottles
|
||||
|
||||
- name: Show linkage
|
||||
run: brew linkage -v openblas
|
||||
|
|
Loading…
Reference in New Issue