Skip to content

Commit

Permalink
another attempt at CI
Browse files Browse the repository at this point in the history
  • Loading branch information
amanharwara committed Jan 26, 2024
1 parent cf53411 commit 51a032e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
AppImage:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand Down Expand Up @@ -51,7 +51,8 @@ jobs:
- name: Build Altus
run: |
yarn install
yarn run make -p darwin --arch="x64,arm64"
yarn run make -p darwin --arch x64
yarn run make -p darwin --arch arm64
- name: Upload DMG
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion makers/MakerAppImage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default class MakerAppImage extends MakerBase<MakerOptions> {
},
},
appImage: {},
publish: "never",
publish: null,
},
}
);
Expand Down
2 changes: 1 addition & 1 deletion makers/MakerNSIS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default class MakerNSIS extends MakerBase<MakerOptions> {
artifactName: "${productName}-Setup-${version}.${ext}",
allowToChangeInstallationDirectory: true,
},
publish: "never",
publish: null,
},
}
);
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"version": "5.0.0",
"description": "Desktop client for WhatsApp Web with themes & multiple account support.",
"main": ".vite/build/main.js",
"build": {
"publish": "never"
},
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
Expand Down

0 comments on commit 51a032e

Please sign in to comment.