[READ-ONLY] Mirror of https://github.com/probablykasper/ferrum. Music library app for Mac, Linux and Windows ferrum.kasper.space
electron linux macos music music-library music-player napi windows
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix updater action

Kasper (Oct 8, 2024, 8:33 AM +0200) da3b62cb 51089172

+7 -6
+7 -6
.github/workflows/release.yml
··· 36 36 - run: npm install 37 37 - run: npm run napi -- --target ${{ matrix.target }} 38 38 - run: npm run build:web 39 - - run: npm run electron-builder -- ${{ matrix.arg }} --publish always --config.publish.provider github --config.publish.publishAutoUpdate true 39 + - run: npm run electron-builder -- ${{ matrix.arg }} --publish always --config.publish.provider github --config.publish.publishAutoUpdate false 40 40 env: 41 41 GH_TOKEN: ${{ secrets.github_token }} 42 42 - run: npm run generate-update-json 43 43 44 - - name: Upload updater JSON 45 - uses: actions/upload-artifact@v4 46 - with: 47 - name: update.json 48 - path: build/update.json 44 + # Do not run in parallel - It can cause errors even with --clobber 45 + - name: Upload update.json 46 + if: matrix.target == 'aarch64-apple-darwin' 47 + run: gh release upload ${{ github.ref_name }} build/update.json 48 + env: 49 + GH_TOKEN: ${{ github.token }}