diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6b643c48..5ff2b1a2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,6 +32,10 @@ jobs: - name: Package macOS if: runner.os == 'macOS' run: node release-automation/build.js --mac + env: + USE_HARD_LINKS: "false" - name: Package Linux if: runner.os == 'Linux' run: node release-automation/build.js --debian --tarball --appimage + env: + USE_HARD_LINKS: "false" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aa5c2625..b4b1838d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,6 +50,7 @@ jobs: run: node release-automation/build.js --production --mac env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + USE_HARD_LINKS: "false" APPLE_ID_USERNAME: ${{ secrets.APPLE_ID_USERNAME }} APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }} APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} @@ -60,3 +61,4 @@ jobs: run: node release-automation/build.js --production --debian --tarball --appimage env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + USE_HARD_LINKS: "false"