Skip to content

Commit 6c60dc6

Browse files
authored
Seems different build toolchains use different paths. Trying wildcard
1 parent 1f20951 commit 6c60dc6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/cmake.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# well on Windows or Mac. You can convert this to a matrix build if you need
1818
# cross-platform coverage.
1919
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
20-
runs-on: ${{ matrix.platform }}
20+
runs-on: ${{matrix.platform}}
2121

2222
steps:
2323
- uses: actions/checkout@v2
@@ -53,5 +53,5 @@ jobs:
5353
- name: Archive binaries
5454
uses: actions/upload-artifact@v2
5555
with:
56-
name: 8-bit ${{ matrix.platform }}
57-
path: ${{ github.workspace }}/build/src/Release/8bit*
56+
name: 8-bit ${{matrix.platform}}
57+
path: ${{github.workspace}}/build/src/**/8bit*

0 commit comments

Comments
 (0)