We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b22581c commit 948a4b8Copy full SHA for 948a4b8
1 file changed
.github/workflows/build.yml
@@ -63,8 +63,8 @@ jobs:
63
- name: Rename binaries (Linux)
64
if: runner.os == 'Linux'
65
run: |
66
- mv bin/RTLTestRunApp bin/RTLTestRunApp-linux-${{ matrix.compiler }}
67
- mv bin/RTLBenchmarkApp bin/RTLBenchmarkApp-linux-${{ matrix.compiler }}
+ mv bin/RTLTestRunApp bin/RTLTestRunApp-${{ matrix.compiler }}
+ mv bin/RTLBenchmarkApp bin/RTLBenchmarkApp-${{ matrix.compiler }}
68
69
# Rename binaries (Windows / MSVC)
70
- name: Rename binaries (Windows)
@@ -77,7 +77,7 @@ jobs:
77
- name: Upload build artifacts
78
uses: actions/upload-artifact@v4
79
with:
80
- name: rtl-test-binaries-${{ matrix.os }}-${{ matrix.compiler }}
+ name: rtl-test-binaries-${{ matrix.compiler }}
81
path: bin/
82
83
# Publish to GitHub Release (release branch only)
0 commit comments