forked from Slocan/timerecord
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
59d8aaa
commit d5c0d8f
Showing
7 changed files
with
15 additions
and
12 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,7 +82,10 @@ jobs: | |
|
||
- name: Bundle DR2 executable / PyInstaller | ||
run: | | ||
resources\bundle-dr2.bat | ||
resources\bundle-dr2.ps1 | ||
shell: pwsh | ||
env: | ||
DRTR_CODESIGN_CERTIFICATE_PASS: ${{ secrets.DRTR_CODESIGN_CERTIFICATE_PASS }} | ||
|
||
- name: Zip distribution / create-7z-action | ||
uses: DuckSoft/[email protected] | ||
|
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
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
if (Test-Path dirtrally-lb.db) { | ||
Remove-Item -Force dirtrally-lb.db | ||
} | ||
bin\sqlite3 -batch -init resources\setup-dr2.sql dirtrally-lb.db .exit | ||
pyinstaller timerecord.spec --noconfirm --name timerecorder-dr2 | ||
pwsh.exe -wd resources resources\sign.ps1 -Exe ..\dist\timerecorder-dr2\timerecord.exe | ||
exit $LASTEXITCODE |
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