fix(ci): remove duplicative steps from bundled release workflow

This commit is contained in:
mkorwel
2025-10-28 13:02:10 -07:00
parent b89f64341e
commit d2e96b6c0a
3 changed files with 3 additions and 17 deletions
@@ -17,10 +17,6 @@ inputs:
runs:
using: 'composite'
steps:
- name: 'Install dependencies'
shell: 'bash'
run: 'npm ci'
- name: 'Setup NPMRC'
uses: './.github/actions/setup-npmrc'
with:
+3
View File
@@ -46,6 +46,9 @@ jobs:
node-version-file: '.nvmrc'
cache: 'npm'
- name: 'Install Dependencies'
run: 'npm ci'
- name: 'Calculate Version and Tag'
id: 'vars'
run: |
@@ -99,19 +99,6 @@ jobs:
gemini_api_key: '${{ secrets.GEMINI_API_KEY }}'
working-directory: './release'
- name: 'Bundle'
working-directory: './release'
shell: 'bash'
run: 'npm run bundle'
- name: 'Prepare Package for Publishing'
if: "${{ vars.NPM_REGISTRY_SCOPE != '' }}"
working-directory: './release'
shell: 'bash'
env:
PACKAGE_SCOPE: '${{ vars.NPM_REGISTRY_SCOPE }}'
run: 'node scripts/prepare-package.js --scope=${{ env.PACKAGE_SCOPE }}'
- name: 'Publish Bundle'
uses: './.github/actions/publish-bundle'
with: