From 83d48f0c2973b48a9121ee92b840294f52312cae Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Tue, 21 Dec 2021 14:47:27 +0100 Subject: [PATCH] meta: fix release script Refs: b0bf1a3eb4c054abd35ffcef3fa4a97aa798d6cc --- .github/workflows/release-candidate.yml | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-candidate.yml b/.github/workflows/release-candidate.yml index ffca706776..2b4a0c03c3 100644 --- a/.github/workflows/release-candidate.yml +++ b/.github/workflows/release-candidate.yml @@ -33,11 +33,11 @@ jobs: - name: Bump candidate packages version run: corepack yarn version apply --all --json | jq -s > releases.json - name: Prepare changelog - run: corepack yarn workspace @uppy-build/release update-changelogs releases.json | xargs git add + run: corepack yarn workspace @uppy-dev/release update-changelogs releases.json | xargs git add - name: Update contributors table run: corepack yarn contributors:save && git add README.md - name: Update CDN URLs - run: corepack yarn workspace @uppy-build/release update-version-URLs | xargs git add + run: corepack yarn workspace @uppy-dev/release update-version-URLs | xargs git add - name: Stage changes and remove temp files run: | git rm -rf .yarn/versions diff --git a/package.json b/package.json index f585a47ddd..9d98a927f0 100644 --- a/package.json +++ b/package.json @@ -143,7 +143,7 @@ "lint:css": "stylelint ./packages/**/*.scss", "lint:css:fix": "stylelint ./packages/**/*.scss --fix", "lint": "eslint . --cache", - "release": "PACKAGES=$(yarn workspaces list --json) yarn workspace @uppy-build/release interactive", + "release": "PACKAGES=$(yarn workspaces list --json) yarn workspace @uppy-dev/release interactive", "size": "echo 'JS Bundle mingz:' && cat ./packages/uppy/dist/uppy.min.js | gzip | wc -c && echo 'CSS Bundle mingz:' && cat ./packages/uppy/dist/uppy.min.css | gzip | wc -c", "start:companion": "bash ./bin/companion", "start": "npm-run-all --parallel watch start:companion web:start",