Skip to content

Bump aiohttp from 3.9.4 to 3.9.5 (#139) #40

Bump aiohttp from 3.9.4 to 3.9.5 (#139)

Bump aiohttp from 3.9.4 to 3.9.5 (#139) #40

Workflow file for this run

name: Publish exe
on:
push:
tags:
- '*'
jobs:
build:
name: Publish Windows executable
runs-on: windows-latest
permissions: write-all
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Build
run: >
pip install -r config/build-requirements.txt
&& python -m config.build
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
file: ./dist/DandelionMusic.exe
asset_name: DandelionMusic-$tag.exe