Skip to content

Commit 1a88c4a

Browse files
committed
Fix bottle upload problem & typo
1 parent 0b44802 commit 1a88c4a

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/nightly-Homebrew-build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
on:
44
push:
55
paths:
6-
- '**/nightlyHomebrew-build.yml'
6+
- '**/nightly-Homebrew-build.yml'
77
pull_request:
88
branches:
99
- develop
@@ -51,13 +51,16 @@ jobs:
5151
# the HEAD flags tell Homebrew to build the develop branch fetch via git
5252

5353
- name: Create bottle
54-
run: brew bottle -v openblas
54+
run: |
55+
brew bottle -v openblas
56+
mkdir bottles
57+
mv *.bottle.tar.gz bottles
5558
5659
- name: Upload bottle
5760
uses: actions/upload-artifact@v1
5861
with:
5962
name: openblas--HEAD.catalina.bottle.tar.gz
60-
paht: ./*.bottle.*
63+
path: bottles
6164

6265
- name: Show linkage
6366
run: brew linkage -v openblas

0 commit comments

Comments
 (0)