Skip to content

Update requirements.txt #10

Update requirements.txt

Update requirements.txt #10

Workflow file for this run

name: Build and Release
on:
push:
branches:
- main
jobs:
build-and-release:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12.5"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build with Nuitka
run: |
python -m nuitka --onefile main.py --enable-plugin=tk-inter --jobs=8 --static-libpython=no --remove-output --standalone --windows-disable-console --windows-icon-from-ico=./assets/icon.ico --output-filename=SmoothedScroll
- name: Configure Git
run: |
git config user.name "GitHub Actions"
git config user.email "[email protected]"
- name: Create Release
id: create_release
uses: actions/create-release@v1
with:
tag_name: v1.${{ github.run_number }}
release_name: "Release v1.${{ github.run_number }}"
body: "Automatic release v1.${{ github.run_number }}"
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./build/SmoothedScroll.exe
asset_name: SmoothedScroll.exe
asset_content_type: application/octet-stream