We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9d0cfa commit 4863522Copy full SHA for 4863522
.github/workflows/main.yml
@@ -8,7 +8,6 @@ jobs:
8
matrix:
9
os:
10
- ubuntu-latest
11
- - macos-latest
12
- windows-latest
13
runs-on: ${{ matrix.os }}
14
permissions:
@@ -25,7 +24,7 @@ jobs:
25
24
- name: Find built file
26
shell: pwsh
27
run: |
28
- echo "FILE_PATH=$(Get-ChildItem -Path build -Recurse -File -Name | Where-Object { $_ -notmatch '^\.' })" >> $env:GITHUB_ENV
+ echo "FILE_PATH=$(Get-ChildItem -Path build -Recurse -File -Name | Where-Object { $_ -notmatch '^\.' } | ForEach-Object { Join-Path -Path 'build' -ChildPath $_ })" >> $env:GITHUB_ENV
29
30
- if: startsWith(github.ref, 'refs/tags/')
31
uses: softprops/action-gh-release@v2
0 commit comments