Skip to content

Commit

Permalink
ci: change matrix and change label name for action
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyar committed Jan 27, 2021
1 parent 1b68819 commit 142e0bf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/building.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,12 @@ jobs:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
runs-on: ${{matrix.os}}
platform:
- { on: ubuntu-20.04, name: linux }
- { on: macos-11.0, name: big sur }
- { on: macos-10.15, name: catalina }
runs-on: ${{ matrix.platform.on }}
name: ${{ matrix.platform.name }}
steps:
- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/uploading.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
upload:
if: contains(github.event.pull_request.labels.*.name, 'ok')
if: contains(github.event.pull_request.labels.*.name, 'bottle')
runs-on: ubuntu-latest
steps:
- name: Set up Homebrew
Expand Down

0 comments on commit 142e0bf

Please sign in to comment.