forked from sim0n00ps/OF-DL
Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f950dc258f | |||
| 12d7d6793e | |||
| 80cda0b8b5 | |||
| acc2aea459 | |||
| eea0af0d82 | |||
| 6c054454ed | |||
| b5be1f350b | |||
| 3f51f469ab | |||
| 0b149e2547 | |||
| fe941bb540 | |||
| d81a4d60f9 | |||
| 846b80a6c9 | |||
| 605fbbda69 |
@ -57,8 +57,12 @@ jobs:
|
||||
cp /home/rhys/ffmpeg/ffmpeg-7.1.1-essentials_build/bin/ffprobe.exe .
|
||||
cp /home/rhys/ffmpeg/ffmpeg-7.1.1-essentials_build/LICENSE LICENSE.ffmpeg
|
||||
|
||||
echo "➤ Remove unneeded playwright binaries"
|
||||
rm -rf .playwright/node/darwin*
|
||||
rm -rf .playwright/node/linux*
|
||||
|
||||
echo "➤ Creating release zip"
|
||||
zip ../OFDLV${{ steps.version.outputs.version }}.zip OF\ DL.exe e_sqlite3.dll rules.json config.conf cdm chromium-scripts ffmpeg.exe ffprobe.exe LICENSE.ffmpeg
|
||||
zip -r ../OFDLV${{ steps.version.outputs.version }}.zip OF\ DL.exe e_sqlite3.dll rules.json config.conf cdm chromium-scripts .playwright playwright.ps1 ffmpeg.exe ffprobe.exe LICENSE.ffmpeg
|
||||
cd ..
|
||||
|
||||
- name: Create release and upload artifact
|
||||
|
||||
@ -314,7 +314,7 @@ public class AuthService(IServiceProvider serviceProvider) : IAuthService
|
||||
}
|
||||
|
||||
string cookies = string.Join(" ", mappedCookies.Keys.Where(key => _desiredCookies.Contains(key))
|
||||
.Select(key => $"${key}={mappedCookies[key]};"));
|
||||
.Select(key => $"{key}={mappedCookies[key]};"));
|
||||
|
||||
await browser.CloseAsync();
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user