mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-27 13:53:01 +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: |
|
run: |
|
||||||
# Apply patches to obs-studio
|
# Apply patches to obs-studio
|
||||||
pushd "${{ github.workspace }}/third-party/obs-studio" > /dev/null
|
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}''..."
|
echo "Applying patch '${f}''..."
|
||||||
[ -e "$f" ] || continue
|
[ -e "$f" ] || continue
|
||||||
git apply "$f"
|
git apply "$f"
|
||||||
|
@ -257,7 +257,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
# Apply patches to obs-studio
|
# Apply patches to obs-studio
|
||||||
pushd "${{ github.workspace }}/third-party/obs-studio" > /dev/null
|
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}''..."
|
echo "Applying patch '${f}''..."
|
||||||
[ -e "$f" ] || continue
|
[ -e "$f" ] || continue
|
||||||
git apply "$f"
|
git apply "$f"
|
||||||
|
@ -405,7 +405,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
# Apply patches to obs-studio
|
# Apply patches to obs-studio
|
||||||
pushd "${{ github.workspace }}/third-party/obs-studio" > /dev/null
|
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}''..."
|
echo "Applying patch '${f}''..."
|
||||||
[ -e "$f" ] || continue
|
[ -e "$f" ] || continue
|
||||||
git apply "$f"
|
git apply "$f"
|
||||||
|
|
Loading…
Reference in a new issue