Skip to content

Commit

Permalink
fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
summeroff committed Jan 9, 2025
1 parent afad646 commit 42fc287
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,8 @@ jobs:
env:
PACKAGE_NAME: libobs
OS_TAG: windows64
InstallPath: "build_x64/install"
InstallDir: "install"
BuildDir: "build_x64"
RELEASE_BUCKET: "obsstudios3.streamlabs.com"
ReleaseName: release
defaults:
Expand Down Expand Up @@ -415,7 +416,10 @@ jobs:
$version = "${{ github.ref }}".Replace("refs/tags/", "")
echo "VERSION=$version" | Out-File -FilePath $env:GITHUB_OUTPUT -Append
- name: Package OBS lib 🗜️
run: 7z a -r ${{env.TARGET_ARTIFACT}}.7z ${{env.InstallPath}}
run: |
cd ${{env.BuildDir}}
7z a -r ../${{env.TARGET_ARTIFACT}}.7z ${{env.InstallDir}}
cd ..
env:
TARGET_ARTIFACT: ${{ env.PACKAGE_NAME }}-${{ env.OS_TAG }}-${{ env.ReleaseName }}-${{ steps.get_version.outputs.VERSION }}

Expand Down

0 comments on commit 42fc287

Please sign in to comment.