Adjust group dashboard icon padding #17
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows | |
on: | |
push: | |
branches: | |
- main | |
env: | |
ARTIFACT_EXECUTABLE: itaxotools-taxi-gui-windows | |
jobs: | |
build-executable: | |
name: Build Windows executable | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements-live.txt | |
pip install ".[dev]" | |
- name: Make executable | |
uses: ./.github/actions/make-executable | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ env.ARTIFACT_EXECUTABLE }} | |
path: dist/*.exe |