Skip to content

Commit

Permalink
meta: fix release script
Browse files Browse the repository at this point in the history
Refs: b0bf1a3
  • Loading branch information
aduh95 committed Dec 21, 2021
1 parent a3248c8 commit 83d48f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-candidate.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -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",
Expand Down

0 comments on commit 83d48f0

Please sign in to comment.