Skip to content

ci: bump actions/setup-node to v3 #14

ci: bump actions/setup-node to v3

ci: bump actions/setup-node to v3 #14

Workflow file for this run

name: Publish canary release
on:
push:
branches:
- "fix-canary-releases"
jobs:
tag-and-publish-to-npm:
runs-on: ubuntu-latest
# Don't run on regular releases
if: "!startsWith(github.event.head_commit.message, 'release: ')"
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn
- name: Run release script
run: yarn release:canary
# - name: Publish all packages
# run: ./scripts/publish.sh canary
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
timeout-minutes: 10