This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #165 from Floskinner/gui
New Feature: GUI hinzufügen
- Loading branch information
Showing
20 changed files
with
2,519 additions
and
29 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
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 |
---|---|---|
|
@@ -16,6 +16,9 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: tagname | ||
uses: olegtarasov/[email protected] | ||
|
||
- name: Setup Python | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -24,33 +27,57 @@ jobs: | |
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: Build Windows | ||
run: pyinstaller --clean --noconfirm specs/windows-terminservice.spec | ||
- name: Build Windows GUI | ||
run: pyinstaller --clean --noconfirm specs/windows-terminservice-gui.spec | ||
|
||
- name: Chocolatey install innosetup | ||
uses: crazy-max/[email protected] | ||
with: | ||
# Arguments to pass to Chocolatey | ||
args: install innosetup --install-arguments="'/DIR=../innosetup'" --force | ||
- name: tagname | ||
uses: olegtarasov/[email protected] | ||
- name: Run innosetup | ||
|
||
- name: Innosetup windows-terminservice | ||
# Run innosetup and set application version to git tag | ||
run: ../innosetup/ISCC.exe specs/windows-terminservice.iss /DApplicationVersion=${{ env.GIT_TAG_NAME }} | ||
- name: Zip | ||
- name: Innosetup windows-terminservice-gui | ||
# Run innosetup and set application version to git tag | ||
run: ../innosetup/ISCC.exe specs/windows-terminservice-gui.iss /DApplicationVersion=${{ env.GIT_TAG_NAME }} | ||
|
||
- name: Zip Windows | ||
uses: papeloto/action-zip@v1 | ||
with: | ||
files: dist/ | ||
files: dist/windows-terminservice | ||
dest: vaccipy-windows.zip | ||
- name: Zip Windows gui | ||
uses: papeloto/action-zip@v1 | ||
with: | ||
files: dist/windows-terminservice-gui | ||
dest: vaccipy-windows-gui.zip | ||
|
||
- name: Store windows zip as build artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: vaccipy-windows | ||
path: vaccipy-windows.zip | ||
- name: Store windows gui zip as build artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: vaccipy-windows-gui | ||
path: vaccipy-windows-gui.zip | ||
|
||
- name: Store windows installer as build artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: vaccipy-windows-installer | ||
path: installers/vaccipy_installer.exe | ||
- name: Store windows gui installer as build artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: vaccipy-windows-gui-installer | ||
path: installers/vaccipy_gui_installer.exe | ||
|
||
build-linux: | ||
runs-on: ubuntu-latest | ||
|
@@ -72,7 +99,7 @@ jobs: | |
with: | ||
files: dist/ | ||
dest: vaccipy-ubuntu.zip | ||
- name: Store windows build artifact | ||
- name: Store ubuntu build artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: vaccipy-ubuntu | ||
|
@@ -90,5 +117,7 @@ jobs: | |
prerelease: false | ||
files: | | ||
vaccipy-windows-installer/vaccipy_installer.exe | ||
vaccipy-windows-gui-installer/vaccipy_gui_installer.exe | ||
vaccipy-windows/vaccipy-windows.zip | ||
vaccipy-windows-gui/vaccipy-windows-gui.zip | ||
vaccipy-ubuntu/vaccipy-ubuntu.zip |
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ log/ | |
|
||
# data | ||
kontaktdaten.json | ||
zeitspanne.json | ||
|
||
#building: | ||
installer/ | ||
|
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
Oops, something went wrong.