Skip to content

Update publish.yml

Update publish.yml #2

Workflow file for this run

name: Publish new EXE
on:
push:
branches: main
jobs:
build-windows:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: '3.11'
architecture: 'x64'
- name: Install requirements
run: |
pip install -r requirements.txt
- name: Run PyInstaller
run: |
python -m pyinstaller .\AutoupdateRates.exe.spec
- uses: actions/upload-artifact@v2
with:
name: TEST
path: dist/text.exe