Skip to content

Commit 36009a4

Browse files
committed
fix action
1 parent eae3f40 commit 36009a4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
@@ -19,7 +19,7 @@ jobs:
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:

.github/workflows/release_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
@@ -19,7 +19,7 @@ jobs:
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:

0 commit comments

Comments
 (0)