Browse Source

meta: fix release script

Refs: b0bf1a3eb4c054abd35ffcef3fa4a97aa798d6cc
Antoine du Hamel 3 years ago
parent
commit
83d48f0c29
2 changed files with 3 additions and 3 deletions
  1. 2 2
      .github/workflows/release-candidate.yml
  2. 1 1
      package.json

+ 2 - 2
.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

+ 1 - 1
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",