Skip to content

Commit 0834da7

Browse files
committed
use build:tarball everywhere
1 parent 4840ddb commit 0834da7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ jobs:
344344
path: ${{ env.CACHED_BUILD_PATHS }}
345345
key: ${{ env.BUILD_CACHE_KEY }}
346346
- name: Pack
347-
run: yarn build:npm
347+
run: yarn build:tarball
348348
- name: Archive artifacts
349349
uses: actions/[email protected]
350350
with:

docs/new-sdk-release-checklist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This page serves as a checklist of what to do when releasing a new SDK for the f
2121
- [ ] Make sure that the `LICENSE` file exists and has the correct license (We default to the `MIT` license)
2222
- [ ] Also check, that the same license is mentioned in `package.json`
2323

24-
- [ ] Make sure that the tarball (`yarn build:npm`) has all the necessary contents
24+
- [ ] Make sure that the tarball (`yarn build:tarball`) has all the necessary contents
2525

2626
For basic SDKs, this means that the tarball has at least these files:
2727

packages/e2e-tests/publish-packages.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import * as path from 'path';
66
const repositoryRoot = path.resolve(__dirname, '../..');
77

88
// Create tarballs
9-
childProcess.execSync('yarn build:npm', { encoding: 'utf8', cwd: repositoryRoot, stdio: 'inherit' });
9+
childProcess.execSync('yarn build:tarball', { encoding: 'utf8', cwd: repositoryRoot, stdio: 'inherit' });
1010

1111
// Get absolute paths of all the packages we want to publish to the fake registry
1212
const packageTarballPaths = glob.sync('packages/*/sentry-*.tgz', {

packages/replay/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
yarn build
2727
2828
- run: |
29-
yarn build:npm
29+
yarn build:tarball
3030
3131
- uses: actions/[email protected]
3232
with:

0 commit comments

Comments
 (0)