Skip to content

[pre-commit.ci] pre-commit autoupdate #138

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #138

Workflow file for this run

name: Development Release
on:
push:
jobs:
build:
if: "!startsWith(github.ref, 'refs/tags/v')"
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install Pyinstaller
run: |
python -m pip install --upgrade pip
python -m pip install pyinstaller
- name: Install Dependencies
run: make deps
- name: Build
run: |
make pyinstaller
mv dist/palms.exe dist/palms-dev.exe
- name: Release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
title: "Development Build"
automatic_release_tag: "latest"
prerelease: true
files: dist/*