We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43eea5c commit 46f729dCopy full SHA for 46f729d
1 file changed
.github/workflows/build-renderer.yml
@@ -32,8 +32,7 @@ jobs:
32
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
33
id: package_version
34
run: |
35
- cd projects/renderer
36
- $VERSION = node -p "require('./package.json').version"
+ $VERSION = node -p "require('./projects/renderer/package.json').version"
37
echo "version=$VERSION" >> $env:GITHUB_OUTPUT
38
39
- name: Check if version changed
@@ -68,9 +67,6 @@ jobs:
68
67
69
cd projects/renderer
70
yarn install
71
- echo "version_changed=true" >> $env:GITHUB_OUTPUT
72
- echo "No existing meta file found, creating new one"
73
- }
74
75
- name: Build Electron app
76
if: github.ref == 'refs/heads/main' && github.event_name == 'push' && steps.version_check.outputs.version_changed == 'true'
0 commit comments