agentfit 0.1.6 → 0.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -43,12 +43,14 @@ jobs:
43
43
  APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
44
44
  run: npm run electron:build:mac
45
45
 
46
- - name: Upload DMGs
46
+ - name: Upload DMGs + updater metadata
47
47
  uses: actions/upload-artifact@v7
48
48
  with:
49
49
  name: mac-dmgs
50
50
  path: |
51
51
  dist-electron/*.dmg
52
+ dist-electron/*.dmg.blockmap
53
+ dist-electron/latest-mac*.yml
52
54
 
53
55
  build-win:
54
56
  runs-on: windows-latest
@@ -66,12 +68,14 @@ jobs:
66
68
  - name: Build Windows installer
67
69
  run: npm run electron:build:win
68
70
 
69
- - name: Upload exe
71
+ - name: Upload exe + updater metadata
70
72
  uses: actions/upload-artifact@v7
71
73
  with:
72
74
  name: win-exe
73
75
  path: |
74
76
  dist-electron/*.exe
77
+ dist-electron/*.exe.blockmap
78
+ dist-electron/latest*.yml
75
79
 
76
80
  publish-npm:
77
81
  runs-on: ubuntu-latest