Skip to content

Commit c0317a0

Browse files
committed
fix: missing env variables
1 parent 4d1192e commit c0317a0

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/scripts/get_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
version = version.strip('"')
1111

1212
with open(env_file, "a") as myfile:
13-
myfile.write("APP_VERSION=" + version)
13+
myfile.write("PYAPP_PROJECT_VERSION=" + version)
1414
exit(0)

.github/workflows/dist-build-windows.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ jobs:
2929
python ..\.github\scripts\get_version.py
3030
echo "${{ env.APP_VERSION }}"
3131
- name: Setup PyOxidizer and build
32+
env:
33+
PYAPP_FULL_ISOLATION: 1
34+
PYAPP_PROJECT_NAME: gefyra
35+
PYAPP_EXEC_SPEC: gefyra.cli.main:main
36+
PYAPP_PIP_EXTRA_ARGS: click alive-progress tabulate cli-tracker
37+
PYAPP_DISTRIBUTION_EMBED: 1
3238
working-directory: client/
3339
run: |
3440
Invoke-WebRequest 'https://github.com/ofek/pyapp/releases/latest/download/source.tar.gz' -OutFile .\pyapp-source.tar.gz

0 commit comments

Comments
 (0)