mirror of
https://github.com/greflm13/StaticGalleryBuilder.git
synced 2026-02-05 02:59:27 +00:00
add workflow
This commit is contained in:
15
.github/workflows/build-release.yml
vendored
Normal file
15
.github/workflows/build-release.yml
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
name: build-release
|
||||
run-name: build-release
|
||||
on: [push]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.12
|
||||
- name: install dependancies
|
||||
run: pip install -r requirements.txt
|
||||
- name: build package
|
||||
run: pyinstaller builder.py modules/*.py -n StaticGalleryBuilder
|
||||
Reference in New Issue
Block a user