mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-23 20:05:11 +00:00
ci: GitHub Actions does not correctly transform github.workspace here
This commit is contained in:
parent
59d3781269
commit
4b0e00bc54
1 changed files with 3 additions and 3 deletions
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
|
@ -115,7 +115,7 @@ jobs:
|
|||
run: |
|
||||
# Apply patches to obs-studio
|
||||
pushd "${{ github.workspace }}/third-party/obs-studio" > /dev/null
|
||||
for f in ${{ github.workspace }}/patches/obs-studio/*.patch; do
|
||||
for f in ../../patches/obs-studio/*.patch; do
|
||||
echo "Applying patch '${f}''..."
|
||||
[ -e "$f" ] || continue
|
||||
git apply "$f"
|
||||
|
@ -257,7 +257,7 @@ jobs:
|
|||
run: |
|
||||
# Apply patches to obs-studio
|
||||
pushd "${{ github.workspace }}/third-party/obs-studio" > /dev/null
|
||||
for f in ${{ github.workspace }}/patches/obs-studio/*.patch; do
|
||||
for f in ../../patches/obs-studio/*.patch; do
|
||||
echo "Applying patch '${f}''..."
|
||||
[ -e "$f" ] || continue
|
||||
git apply "$f"
|
||||
|
@ -405,7 +405,7 @@ jobs:
|
|||
run: |
|
||||
# Apply patches to obs-studio
|
||||
pushd "${{ github.workspace }}/third-party/obs-studio" > /dev/null
|
||||
for f in ${{ github.workspace }}/patches/obs-studio/*.patch; do
|
||||
for f in ../../patches/obs-studio/*.patch; do
|
||||
echo "Applying patch '${f}''..."
|
||||
[ -e "$f" ] || continue
|
||||
git apply "$f"
|
||||
|
|
Loading…
Reference in a new issue