Skip to content

Commit 6d0c1ce

Browse files
Replace nightly with canary releases
1 parent 61a89cf commit 6d0c1ce

File tree

3 files changed

+19
-219
lines changed

3 files changed

+19
-219
lines changed

.github/workflows/canary-release.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# This workflow builds and releases all packages on the main branch with a canary
2+
# dist tag. These packages contain changes that are not yet available in a publicly
3+
# released version of Parcel.
4+
name: canary-release
5+
6+
on:
7+
push:
8+
branches:
9+
- v2
10+
workflow_dispatch:
11+
12+
jobs:
13+
build-and-release:
14+
name: Build and release canary
15+
uses: ./.github/workflows/release.yml
16+
secrets: inherit
17+
with:
18+
release-command: yarn canary:release

.github/workflows/nightly-release.yml

-218
This file was deleted.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"test:integration-ci": "yarn workspace @parcel/integration-tests test-ci",
3232
"test": "yarn test:unit && yarn test:integration",
3333
"dev:release": "lerna publish -y --canary --preid dev --dist-tag=dev --exact --force-publish=* --no-git-tag-version --no-push",
34-
"nightly:release": "lerna publish -y --canary --preid nightly --dist-tag=nightly --exact --force-publish=* --no-git-tag-version --no-push",
34+
"canary:release": "lerna publish -y --canary --preid canary --dist-tag=canary --exact --force-publish=* --no-git-tag-version --no-push",
3535
"tag:prerelease": "lerna version --exact --force-publish=* --no-git-tag-version --no-push && yarn adjust-versions --exact",
3636
"tag:release": "lerna version --exact --force-publish=* --no-git-tag-version --no-push && yarn adjust-versions",
3737
"adjust-versions": "node scripts/update-config-dependencies.js && node scripts/update-engines-peerdeps.js",

0 commit comments

Comments
 (0)