diff options
| author | Opportunity <[email protected]> | 2020-07-17 14:59:56 +0800 |
|---|---|---|
| committer | Opportunity <[email protected]> | 2020-07-17 14:59:56 +0800 |
| commit | fafff4309b0375dd40808d0004f723c9ddd46c80 (patch) | |
| tree | 8ab7d4205babcc98566f0117bf11829c95bbbb04 | |
| parent | bfa27afb47a791059688a8ce78922394405780b0 (diff) | |
try use same name
| -rw-r--r-- | .github/workflows/linux.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/macos.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/windows.yml | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 0475978a1..fd1bb5cd9 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -1,4 +1,4 @@ -name: Linux +name: build on: pull_request: @@ -7,7 +7,7 @@ on: types: [published] jobs: - build: + Linux: runs-on: ubuntu-latest diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 3d4b410f4..a5dedb13a 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -1,4 +1,4 @@ -name: macOS +name: build on: pull_request: @@ -7,7 +7,7 @@ on: types: [published] jobs: - build: + macOS: runs-on: macos-latest diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 8741206d7..6f4a2ce24 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -1,4 +1,4 @@ -name: Windows +name: build on: pull_request: @@ -7,7 +7,7 @@ on: types: [published] jobs: - build: + Windows: strategy: matrix: arch: [x64, x86] |
