tldraw/.github/workflows/publish-new.yml

50 lines
1.4 KiB
YAML
Raw Normal View History

2023-04-21 16:06:21 +00:00
name: Publish new version of public packages
# This bumps the version, updates the changelogs, publishes a GitHub release, and publishes the packages to npm.
# Package publishing is manually triggered on github actions dashboard
on: workflow_dispatch
jobs:
deploy:
name: 'Publish new version of public packages'
environment: npm deploy
timeout-minutes: 15
2023-04-21 16:18:25 +00:00
runs-on: ubuntu-latest-16-cores-open
2023-04-21 16:06:21 +00:00
steps:
- name: tldraw-repo-sync token
id: tldraw-repo-sync
uses: getsentry/action-github-app-token@v2
with:
app_id: ${{ secrets.HUPPY_APP_ID }}
private_key: ${{ secrets.HUPPY_APP_PRIVATE_KEY }}
2023-04-21 16:06:21 +00:00
- name: Check out code
uses: actions/checkout@v3
with:
2023-06-28 10:33:42 +00:00
token: ${{ secrets.STEVES_PUBLISH_TOKEN }}
2023-04-21 16:06:21 +00:00
- name: Prepare repository
# Fetch full git history and tags for auto
run: git fetch --unshallow --tags
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
2023-04-25 10:17:06 +00:00
cache-dependency-path: 'public-yarn.lock'
2023-04-21 16:06:21 +00:00
- name: Enable corepack
run: corepack enable
- name: Install dependencies
run: yarn
- name: Publish
run: yarn tsx ./scripts/publish-new.ts
env:
2023-06-28 10:27:04 +00:00
GH_TOKEN: ${{ secrets.STEVES_PUBLISH_TOKEN }}
2023-04-21 16:06:21 +00:00
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2023-05-15 13:17:19 +00:00
HUPPY_TOKEN: ${{ secrets.HUPPY_TOKEN }}