File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# This is a basic workflow to help you get started with Actions
22
3- name : release
3+ name : release for linux
44
55# Controls when the action will run. Triggers the workflow on push or pull request
66# events but only for the master branch
1919 strategy :
2020 matrix :
2121 python-version : ["3.9"] # must use str, not int, or 3.10 will be recognized as 3.1
22- os : [ubuntu-latest, macos-latest ]
22+ os : [ubuntu-latest]
2323 runs-on : ${{ matrix.os }}
2424 # Steps represent a sequence of tasks that will be executed as part of the job
2525 steps :
Original file line number Diff line number Diff line change 11# This is a basic workflow to help you get started with Actions
22
3- name : release
3+ name : release for macos
44
55# Controls when the action will run. Triggers the workflow on push or pull request
66# events but only for the master branch
1919 strategy :
2020 matrix :
2121 python-version : ["3.9"] # must use str, not int, or 3.10 will be recognized as 3.1
22- os : [ubuntu-latest, macos-latest]
22+ os : [macos-latest]
2323 runs-on : ${{ matrix.os }}
2424 # Steps represent a sequence of tasks that will be executed as part of the job
2525 steps :
You can’t perform that action at this time.
0 commit comments