fix: add other python version #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Release and Upload Assets | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build-tdl-binaries: | |
name: Build tdl binaries for ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest] #[macos-latest, ubuntu-20.04, windows-latest] | |
include: | |
- os: macos-latest | |
TARGET: macos | |
- os: ubuntu-20.04 | |
TARGET: linux-amd64 | |
- os: windows-latest | |
TARGET: win64 | |
container: ${{ matrix.CONTAINER }} | |
env: | |
DISTPATH: tdl-${{ matrix.TARGET }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@master | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@master | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools | |
python3 -m pip install -r requirements.txt | |
python3 gen_filter_cache.py | |
pip install pyinstaller==5.13.0 | |
- name: Build with PyInstaller | |
run: | | |
pyinstaller --distpath ./${{ env.DISTPATH }} media_downloader.spec | |
- name: Add license and readme | |
shell: bash | |
run: mv README_CN.md README.md ./${{ env.DISTPATH }} | |
- name: Archive artifact | |
uses: actions/upload-artifact@master | |
with: | |
name: ${{ env.DISTPATH }} | |
path: ${{ env.DISTPATH }} | |
# release: | |
# needs: build-tdl-binaries | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Check out code | |
# uses: actions/checkout@v2 | |
# with: | |
# fetch-depth: 0 | |
# - name: Get Release Date | |
# id: release_date | |
# run: | | |
# RELEASE_DATE=$(date +%Y-%m-%d) | |
# echo "RELEASE_DATE=$RELEASE_DATE" | tee -a $GITHUB_ENV | |
# echo "release_date=$RELEASE_DATE" >> $GITHUB_OUTPUT | |
# - name: Generate changelog | |
# id: changelog | |
# run: | | |
# PREVIOUS_TAG=$(git describe --abbrev=0 --tags `git rev-list --tags --skip=1 --max-count=1`) | |
# CURRENT_TAG=${{ github.ref }} | |
# LOG=$(git log --pretty=format:'* %s by @%an in %H' $PREVIOUS_TAG...$CURRENT_TAG) | |
# echo "changelog=$LOG" >> $GITHUB_OUTPUT | |
create_release: | |
name: Create GitHub release | |
if: startsWith(github.ref, 'refs/tags/') | |
needs: build-tdl-binaries | |
runs-on: ubuntu-latest | |
outputs: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
VERSION: ${{ steps.get_version.outputs.VERSION }} | |
steps: | |
- name: Create release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: ${{ github.ref }},${{ steps.release_date.outputs.release_date }} | |
draft: false | |
prerelease: false | |
- name: Get version | |
id: get_version | |
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//} | |
shell: bash | |
upload_assets: | |
name: Upload release assets | |
if: startsWith(github.ref, 'refs/tags/') | |
needs: create_release | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
TARGET: [win64] #[macos, linux-amd64, win64] | |
env: | |
DISTPATH: tdl-${{ needs.create_release.outputs.VERSION }}-${{ matrix.TARGET }} | |
steps: | |
- name: Download built binaries | |
uses: actions/download-artifact@master | |
- name: Rename and package binaries | |
run: | | |
zip -r ${{ env.DISTPATH }}.zip ./tdl-${{ matrix.TARGET }}/* | |
- name: Upload release assets | |
id: upload-release-asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
with: | |
upload_url: ${{ needs.create_release.outputs.upload_url }} | |
asset_path: "${{ env.DISTPATH }}.zip" | |
asset_name: "${{ env.DISTPATH }}.zip" | |
asset_content_type: application/zip |