mirror of
https://github.com/block/goose.git
synced 2026-07-17 12:56:20 +02:00
fix: removed double dash in pnpm command (#7951)
This commit is contained in:
@@ -146,7 +146,7 @@ jobs:
|
||||
echo "Building Linux packages (.deb, .rpm, and .flatpak)..."
|
||||
|
||||
# Build all configured packages
|
||||
pnpm run make -- --platform=linux --arch=x64
|
||||
pnpm run make --platform=linux --arch=x64
|
||||
|
||||
echo "Build completed. Checking output..."
|
||||
ls -la out/
|
||||
|
||||
@@ -17,3 +17,12 @@ jobs:
|
||||
with:
|
||||
signing: false
|
||||
ref: ${{ inputs.branch }}
|
||||
|
||||
bundle-desktop-intel-unsigned:
|
||||
uses: ./.github/workflows/bundle-desktop-intel.yml
|
||||
permissions:
|
||||
id-token: write
|
||||
contents: read
|
||||
with:
|
||||
signing: false
|
||||
ref: ${{ inputs.branch }}
|
||||
|
||||
@@ -143,7 +143,7 @@ jobs:
|
||||
pnpm install --frozen-lockfile
|
||||
node scripts/build-main.js
|
||||
node scripts/prepare-platform-binaries.js
|
||||
pnpm run make -- --platform=win32 --arch=x64
|
||||
pnpm run make --platform=win32 --arch=x64
|
||||
|
||||
- name: Copy exe to final out folder and prepare flat distribution
|
||||
shell: bash
|
||||
|
||||
@@ -80,7 +80,20 @@ jobs:
|
||||
signing: false
|
||||
|
||||
# ------------------------------------------------------------
|
||||
# 5) Bundle Desktop App (Linux) - builds goosed and Electron app
|
||||
# 5) Bundle Desktop App (macOS Intel) - builds goosed and Electron app
|
||||
# ------------------------------------------------------------
|
||||
bundle-desktop-intel:
|
||||
needs: [prepare-version]
|
||||
uses: ./.github/workflows/bundle-desktop-intel.yml
|
||||
permissions:
|
||||
id-token: write
|
||||
contents: read
|
||||
with:
|
||||
version: ${{ needs.prepare-version.outputs.version }}
|
||||
signing: false
|
||||
|
||||
# ------------------------------------------------------------
|
||||
# 6) Bundle Desktop App (Linux) - builds goosed and Electron app
|
||||
# ------------------------------------------------------------
|
||||
bundle-desktop-linux:
|
||||
needs: [prepare-version]
|
||||
@@ -104,7 +117,7 @@ jobs:
|
||||
release:
|
||||
name: Release
|
||||
runs-on: ubuntu-latest
|
||||
needs: [build-cli, install-script, bundle-desktop, bundle-desktop-linux, bundle-desktop-windows]
|
||||
needs: [build-cli, install-script, bundle-desktop, bundle-desktop-intel, bundle-desktop-linux, bundle-desktop-windows]
|
||||
permissions:
|
||||
contents: write
|
||||
id-token: write # Required for Sigstore OIDC signing
|
||||
|
||||
Reference in New Issue
Block a user