Skip to content

try to create a release exe with github actions #4

try to create a release exe with github actions

try to create a release exe with github actions #4

Workflow file for this run

name: MealsCount Bulk Optimizer
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Create bulk-optimize Windows tool
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Package Application
uses: JackMcKew/pyinstaller-action-windows@main
with:
path: ./
spec: ./mealscount-bulk-optimize.spec
- uses: actions/upload-artifact@v2
with:
name: mealscount-bulk-optimize.exe
path: dist/
- name: Upload the artifacts
uses: skx/github-action-publish-binaries@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: 'mealscount-bulk-optimize.exe'