We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bffddaa commit 5a01001Copy full SHA for 5a01001
.github/workflows/build-app.yaml
@@ -102,8 +102,9 @@ jobs:
102
shell: pwsh
103
run: |
104
pnpm install
105
- $VERSION = $(node -p "require('./package.json').version")
106
- pnpm tauri build -c '{\"version\":\"$VERSION\"}' -t ${{ matrix.target }} --bundles nsis
+ $VERSION = node -p "require('./package.json').version"
+ pnpm tauri build -c "{\"version\":\"$VERSION\"}" -t ${{ matrix.target }} --bundles nsis
107
+ $APP_NAME = "MagicMirror_$VERSION_${{ matrix.build }}_${{ matrix.arch }}"
108
node scripts/dist.js ${{ matrix.target }} $APP_NAME
109
- name: Upload App
110
uses: actions/upload-artifact@v4
0 commit comments