File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -345,7 +345,8 @@ jobs:
345345 env :
346346 PACKAGE_NAME : libobs
347347 OS_TAG : windows64
348- InstallPath : " build_x64/install"
348+ InstallDir : " install"
349+ BuildDir : " build_x64"
349350 RELEASE_BUCKET : " obsstudios3.streamlabs.com"
350351 ReleaseName : release
351352 defaults :
@@ -415,7 +416,10 @@ jobs:
415416 $version = "${{ github.ref }}".Replace("refs/tags/", "")
416417 echo "VERSION=$version" | Out-File -FilePath $env:GITHUB_OUTPUT -Append
417418 - name : Package OBS lib 🗜️
418- run : 7z a -r ${{env.TARGET_ARTIFACT}}.7z ${{env.InstallPath}}
419+ run : |
420+ cd ${{env.BuildDir}}
421+ 7z a -r ../${{env.TARGET_ARTIFACT}}.7z ${{env.InstallDir}}
422+ cd ..
419423 env :
420424 TARGET_ARTIFACT : ${{ env.PACKAGE_NAME }}-${{ env.OS_TAG }}-${{ env.ReleaseName }}-${{ steps.get_version.outputs.VERSION }}
421425
You can’t perform that action at this time.
0 commit comments