diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 16b6a1a..d133ddb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,7 +62,7 @@ jobs: KEYCHAIN_PROFILE: ${{ env.NOTARYTOOL_PROFILE }} GH_TOKEN: ${{ github.token }} run: | - npm run ship --mac universal + npm run ship -- --mac universal build-windows: runs-on: windows-latest @@ -83,7 +83,7 @@ jobs: env: GH_TOKEN: ${{ github.token }} run: | - npm run ship --windows + npm run ship -- --windows build-linux: runs-on: ubuntu-latest @@ -104,4 +104,4 @@ jobs: env: GH_TOKEN: ${{ github.token }} run: | - npm run ship --linux + npm run ship -- --linux diff --git a/package.json b/package.json index 9f51793..2a02b3d 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "build": { "appId": "com.burny.owlet.app", "productName": "Owlet", - "artifactName": "${productName}-${version}-${os}.${ext}", + "artifactName": "${productName}-${version}-${os}-${arch}.${ext}", "directories": { "output": "dist" },