fix: stabilization mode #42
Workflow file for this run
This file contains 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: Build | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
runs-on: windows-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Prepare Build | |
run: | | |
touch first_launch | |
- name: Create Executable | |
uses: sayyid5416/pyinstaller@v1 | |
with: | |
spec: 'ObjectTracking-win64.spec' | |
requirements: 'requirements.txt' | |
python_ver: '3.11.8' | |
python_arch: 'x64' | |
clean_checkout: 'false' | |
- name: zip Application | |
run: | | |
Compress-Archive -Path dist/ObjectTracking/* -Destination HackebeinObjectTracking-${{ github.ref_name }}-win64.zip | |
- name: Make Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
prerelease: ${{ contains( github.ref_name , '-') }} | |
files: | | |
HackebeinObjectTracking-*.zip | |
token: ${{ secrets.TOKEN }} | |