-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (33 loc) · 1.09 KB
/
release-canary.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Release Canary
on:
push:
branches:
- main
- next
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release Canary
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20
registry-url: "https://registry.npmjs.org"
cache: "yarn" # https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-dependencies
- name: Install Dependencies
run: yarn
- name: Publish Canary release
run: |
echo --- > .changeset/canary.md
echo '"@comet/dev-process-manager": patch' >> .changeset/canary.md
echo --- >> .changeset/canary.md
echo >> .changeset/canary.md
echo fake change to always get a canary release >> .changeset/canary.md
yarn changeset version --snapshot canary
yarn run build-and-publish --tag canary
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}