Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Update README.md

Update README.md #5

Workflow file for this run

name: Build executables
on: [push]
defaults:
run:
shell: bash
jobs:
Build:
name: Build release binaries
strategy:
fail-fast: false
max-parallel: 1
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.8 # Update Python version here
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip pyinstaller
pip install -r requirements.txt
- name: Build with pyinstaller
run: pyinstaller --onefile --name=raiplay-${{ matrix.os }} raiplay-dl.py
- name: Pull before pushing
run: |
git pull
- name: Commit and push to the repository
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: New release of raiplay-${{ matrix.os }}