Skip to content

Commit

Permalink
fix: Use separate autoupdate feed url for Windows 32-bit build (#495)
Browse files Browse the repository at this point in the history
  • Loading branch information
achou11 authored Jul 1, 2021
1 parent 46adb9d commit ec1a25a
Show file tree
Hide file tree
Showing 6 changed files with 1,214 additions and 380 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
MAPEO_VARIANT: ${{ matrix.variant }}
- name: Cleanup artifacts
run: |
npx rimraf@2 'dist/${{ matrix.variant }}/!(*.exe|*.deb|*.AppImage|*.dmg)'
npx rimraf@2 'dist/${{ matrix.variant }}/!(*.exe|*.deb|*.AppImage|*.dmg|*.yml|github)'
shell: bash
- name: Upload artifacts
uses: actions/upload-artifact@v1
Expand Down
2 changes: 1 addition & 1 deletion builder.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const config = {
{
provider: 's3',
bucket: 'downloads.mapeo.app',
path: '/desktop'
path: process.env.ARCH === 'ia32' ? '/desktop-win-ia32' : '/desktop'
},
{
provider: 'github',
Expand Down
Loading

0 comments on commit ec1a25a

Please sign in to comment.