Move top-left toolbar tools to improve screen visibility (#19) #17
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: Publish Canary Packages | |
on: | |
push: | |
branches: [main] | |
jobs: | |
deploy: | |
name: 'Publish Canary Packages' | |
environment: npm deploy | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest-16-cores-open | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.18.2 | |
cache: 'yarn' | |
cache-dependency-path: 'public-yarn.lock' | |
- name: Enable corepack | |
run: corepack enable | |
- name: Install dependencies | |
run: yarn | |
- name: Publish Canary Packages | |
run: yarn tsx ./scripts/publish-canary.ts | |
env: | |
GH_TOKEN: ${{ github.token }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |