mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-01 17:10:10 +00:00
Bump v3.0.5
This commit is contained in:
parent
bfed63bd41
commit
a071d0d2c4
104
.github/workflows/build-dev.yml
vendored
104
.github/workflows/build-dev.yml
vendored
@ -1,104 +0,0 @@
|
||||
name: Build Dev Branch
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- "dev"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
include:
|
||||
- os: windows-latest
|
||||
artifact_name: dev_StreamingCommunity_win
|
||||
executable: dev_StreamingCommunity_win.exe
|
||||
separator: ';'
|
||||
|
||||
- os: macos-latest
|
||||
artifact_name: dev_StreamingCommunity_mac
|
||||
executable: dev_StreamingCommunity_mac
|
||||
separator: ':'
|
||||
|
||||
- os: ubuntu-latest
|
||||
artifact_name: dev_StreamingCommunity_linux_latest
|
||||
executable: dev_StreamingCommunity_linux_latest
|
||||
separator: ':'
|
||||
|
||||
- os: ubuntu-22.04
|
||||
artifact_name: dev_StreamingCommunity_linux_previous
|
||||
executable: dev_StreamingCommunity_linux_previous
|
||||
separator: ':'
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Get the latest release tag
|
||||
id: get_latest_release
|
||||
shell: bash
|
||||
run: |
|
||||
latest_tag=$(curl -s https://api.github.com/repos/${{ github.repository }}/releases/latest | jq -r .tag_name)
|
||||
echo "latest_tag=$latest_tag" >> $GITHUB_ENV
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.12'
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
python -m pip install --upgrade certifi
|
||||
python -m pip install -r requirements.txt
|
||||
python -m pip install pyinstaller
|
||||
|
||||
- name: Build executable with PyInstaller
|
||||
shell: bash
|
||||
run: |
|
||||
# Get certifi certificate path
|
||||
CERT_PATH=$(python -c "import certifi; print(certifi.where())")
|
||||
|
||||
if [[ "${{ matrix.os }}" == "windows-latest" ]]; then
|
||||
CERT_DATA="${CERT_PATH};certifi"
|
||||
SC_DATA="StreamingCommunity;StreamingCommunity"
|
||||
else
|
||||
CERT_DATA="${CERT_PATH}:certifi"
|
||||
SC_DATA="StreamingCommunity:StreamingCommunity"
|
||||
fi
|
||||
|
||||
pyinstaller --onefile --hidden-import=pycryptodomex --hidden-import=ua_generator \
|
||||
--hidden-import=qbittorrentapi --hidden-import=qbittorrent \
|
||||
--hidden-import=bs4 --hidden-import=httpx --hidden-import=rich --hidden-import=tqdm \
|
||||
--hidden-import=m3u8 --hidden-import=psutil --hidden-import=unidecode \
|
||||
--hidden-import=jsbeautifier --hidden-import=jsbeautifier.core \
|
||||
--hidden-import=jsbeautifier.javascript --hidden-import=jsbeautifier.javascript.beautifier \
|
||||
--hidden-import=jsbeautifier.unpackers --hidden-import=jsbeautifier.unpackers.packer \
|
||||
--hidden-import=jsbeautifier.unpackers.javascriptobfuscator \
|
||||
--hidden-import=jsbeautifier.unpackers.myobfuscate \
|
||||
--hidden-import=jsbeautifier.unpackers.urlencode \
|
||||
--hidden-import=jsbeautifier.unpackers.meshim \
|
||||
--hidden-import=editorconfig --hidden-import=editorconfig.handlers \
|
||||
--hidden-import=six --hidden-import=pathvalidate \
|
||||
--hidden-import=Cryptodome.Cipher --hidden-import=Cryptodome.Cipher.AES \
|
||||
--hidden-import=Cryptodome.Util --hidden-import=Cryptodome.Util.Padding \
|
||||
--hidden-import=Cryptodome.Random \
|
||||
--hidden-import=telebot \
|
||||
--additional-hooks-dir=pyinstaller/hooks \
|
||||
--add-data="$CERT_DATA" \
|
||||
--add-data="$SC_DATA" \
|
||||
--name=${{ matrix.artifact_name }} test_run.py
|
||||
|
||||
- name: Upload executable to latest release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
tag_name: ${{ env.latest_tag }}
|
||||
files: dist/${{ matrix.executable }}
|
||||
prerelease: true
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
24
.github/workflows/build.yml
vendored
24
.github/workflows/build.yml
vendored
@ -51,7 +51,7 @@ jobs:
|
||||
|
||||
build:
|
||||
if: startsWith(github.ref_name, 'v') || (github.event_name == 'workflow_dispatch' && github.event.inputs.publish_pypi == 'false')
|
||||
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
include:
|
||||
@ -59,17 +59,17 @@ jobs:
|
||||
artifact_name: StreamingCommunity_win
|
||||
executable: StreamingCommunity_win.exe
|
||||
separator: ';'
|
||||
|
||||
|
||||
- os: macos-latest
|
||||
artifact_name: StreamingCommunity_mac
|
||||
executable: StreamingCommunity_mac
|
||||
separator: ':'
|
||||
|
||||
|
||||
- os: ubuntu-latest
|
||||
artifact_name: StreamingCommunity_linux_latest
|
||||
executable: StreamingCommunity_linux_latest
|
||||
separator: ':'
|
||||
|
||||
|
||||
- os: ubuntu-22.04
|
||||
artifact_name: StreamingCommunity_linux_previous
|
||||
executable: StreamingCommunity_linux_previous
|
||||
@ -105,17 +105,6 @@ jobs:
|
||||
- name: Build executable with PyInstaller
|
||||
shell: bash
|
||||
run: |
|
||||
# Get certifi certificate path
|
||||
CERT_PATH=$(python -c "import certifi; print(certifi.where())")
|
||||
|
||||
if [[ "${{ matrix.os }}" == "windows-latest" ]]; then
|
||||
CERT_DATA="${CERT_PATH};certifi"
|
||||
SC_DATA="StreamingCommunity;StreamingCommunity"
|
||||
else
|
||||
CERT_DATA="${CERT_PATH}:certifi"
|
||||
SC_DATA="StreamingCommunity:StreamingCommunity"
|
||||
fi
|
||||
|
||||
pyinstaller --onefile --hidden-import=pycryptodomex --hidden-import=ua_generator \
|
||||
--hidden-import=qbittorrentapi --hidden-import=qbittorrent \
|
||||
--hidden-import=bs4 --hidden-import=httpx --hidden-import=rich --hidden-import=tqdm \
|
||||
@ -134,8 +123,7 @@ jobs:
|
||||
--hidden-import=Cryptodome.Random \
|
||||
--hidden-import=telebot \
|
||||
--additional-hooks-dir=pyinstaller/hooks \
|
||||
--add-data="$CERT_DATA" \
|
||||
--add-data="$SC_DATA" \
|
||||
--add-data "StreamingCommunity${{ matrix.separator }}StreamingCommunity" \
|
||||
--name=${{ matrix.artifact_name }} test_run.py
|
||||
|
||||
- name: Upload executable
|
||||
@ -150,4 +138,4 @@ jobs:
|
||||
tag_name: ${{ env.latest_tag }}
|
||||
files: dist/${{ matrix.executable }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
@ -1,5 +1,5 @@
|
||||
__title__ = 'StreamingCommunity'
|
||||
__version__ = '3.0.4'
|
||||
__version__ = '3.0.5'
|
||||
__author__ = 'Arrowar'
|
||||
__description__ = 'A command-line program to download film'
|
||||
__copyright__ = 'Copyright 2024'
|
||||
|
Loading…
x
Reference in New Issue
Block a user