Merge pull request #78 from vivid-planet/changeset-release/main #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 14.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
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 publish --tag canary | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |