Skip to content

Commit

Permalink
Update pyinstaller
Browse files Browse the repository at this point in the history
  • Loading branch information
douglascdev committed Oct 10, 2023
1 parent 6954645 commit 201b857
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 41 deletions.
41 changes: 0 additions & 41 deletions .github/workflows/pyinstaller-builds.yaml

This file was deleted.

38 changes: 38 additions & 0 deletions .github/workflows/release-linux.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@

name: Release for Linux

on:
push:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"

- name: Install requirements
run: >-
python3 -m pip install .[dev] --user
- name: Package application
run: >-
cd hasherino && flet pack hasherino.py --add-data UserAuth.html:UserAuth.html
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
files: |
hasherino/dist/hasherino

0 comments on commit 201b857

Please sign in to comment.