Skip to content

Commit aa927b4

Browse files
committed
Minor reorganisation
1 parent 17aa157 commit aa927b4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/build-release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ jobs:
1515
matrix:
1616
# specify a specific compiler to build with each OS separately
1717
include:
18-
- os: macos-10.15
19-
cxx: clang++
20-
nickname: macos
21-
- os: ubuntu-20.04
18+
- platform_name: linux
19+
os: ubuntu-20.04
2220
cxx: g++-10
23-
nickname: linux
21+
- platform_name: macos
22+
os: macos-10.15
23+
cxx: clang++
2424
# NOTE: CXX seems to be ignored on Windows, but specify it anyway for consistency
25-
- os: windows-2019
25+
- platform_name: windows
26+
os: windows-2019
2627
cxx: msvc
27-
nickname: windows
2828

2929
steps:
3030
- uses: actions/checkout@v2
@@ -56,5 +56,5 @@ jobs:
5656
- name: Upload
5757
uses: actions/upload-artifact@v2
5858
with:
59-
name: build_${{ github.sha }}_${{ matrix.nickname }}
59+
name: build_${{ github.run_number }}_${{ matrix.platform_name }}
6060
path: ${{github.workspace}}/artifacts

0 commit comments

Comments
 (0)