Skip to content

chore(git): add new testing folder to gitignore #14

chore(git): add new testing folder to gitignore

chore(git): add new testing folder to gitignore #14

Workflow file for this run

name: Windows
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
WindowsBuild:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: 3.8
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build Exe
run: pyinstaller --onefile --name tif2png tif2png.py
- name: Upload Exe
uses: actions/upload-artifact@v2
with:
name: tif2png
path: dist/tif2png.exe