Fix bottle upload problem & typo

This commit is contained in:
Izaak Beekman 2020-02-17 13:32:33 -05:00
parent 0b44802164
commit 1a88c4ab26
No known key found for this signature in database
GPG Key ID: CB21118C92A64702
1 changed files with 6 additions and 3 deletions

View File

@ -3,7 +3,7 @@
on: on:
push: push:
paths: paths:
- '**/nightlyHomebrew-build.yml' - '**/nightly-Homebrew-build.yml'
pull_request: pull_request:
branches: branches:
- develop - develop
@ -51,13 +51,16 @@ jobs:
# the HEAD flags tell Homebrew to build the develop branch fetch via git # the HEAD flags tell Homebrew to build the develop branch fetch via git
- name: Create bottle - name: Create bottle
run: brew bottle -v openblas run: |
brew bottle -v openblas
mkdir bottles
mv *.bottle.tar.gz bottles
- name: Upload bottle - name: Upload bottle
uses: actions/upload-artifact@v1 uses: actions/upload-artifact@v1
with: with:
name: openblas--HEAD.catalina.bottle.tar.gz name: openblas--HEAD.catalina.bottle.tar.gz
paht: ./*.bottle.* path: bottles
- name: Show linkage - name: Show linkage
run: brew linkage -v openblas run: brew linkage -v openblas