From e033ddac2c733844be88b96a382888a15eb6900a Mon Sep 17 00:00:00 2001 From: Emily Date: Wed, 17 Jul 2024 16:35:33 +0200 Subject: [PATCH] deb --- .github/workflows/release-cli-assets.yml | 4 +++- .github/workflows/test-release.yml | 15 --------------- 2 files changed, 3 insertions(+), 16 deletions(-) diff --git a/.github/workflows/release-cli-assets.yml b/.github/workflows/release-cli-assets.yml index 514f3c3a0..06f6b004f 100644 --- a/.github/workflows/release-cli-assets.yml +++ b/.github/workflows/release-cli-assets.yml @@ -113,7 +113,9 @@ jobs: mask-aws-account-id: 'no' - name: Release CLI Assets - run: pnpm run release:cli + run: | + export GPG_TTY=$(tty) + pnpm run release:cli env: PUBLISHED_PACKAGES: ${{ inputs.publishedPackages }} MATRIX_OS: ${{ matrix.os }} diff --git a/.github/workflows/test-release.yml b/.github/workflows/test-release.yml index 324c7131d..fd94c75ef 100644 --- a/.github/workflows/test-release.yml +++ b/.github/workflows/test-release.yml @@ -17,21 +17,6 @@ jobs: # This makes the PR pushed to use GITHUB_TOKEN and trigger the checks persist-credentials: false - - name: Install pnpm - uses: pnpm/action-setup@v4 - - - name: Use Node.js ${{ steps.config.outputs.NVMRC }} - uses: actions/setup-node@v3 - with: - node-version: ${{ steps.config.outputs.NVMRC }} - cache: 'pnpm' - - - name: Install dependencies - run: pnpm install --frozen-lockfile - - - name: Build - run: pnpm build - publish-cli-assets: name: Publish CLI assets needs: [release]