348ff9f66a
Switch on package publishing for sync libraries so we can start building templates on the canaries. ### Change type - [x] `other`
46 lines
1.6 KiB
YAML
46 lines
1.6 KiB
YAML
name: (Re)Publish public packages manually
|
|
# This only attempts to publish the public packages to npm.
|
|
# It does not bump the version, it does not update the changelogs, it does not create a github release.
|
|
|
|
# Prevent more than one non-canary npm publishing job from running at the same time
|
|
concurrency:
|
|
group: npm-publish
|
|
|
|
# Package publishing is manually triggered on github actions dashboard
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
deploy:
|
|
name: '(Re)Publish public packages manually'
|
|
environment: npm deploy
|
|
timeout-minutes: 60
|
|
runs-on: ubuntu-latest-16-cores-open
|
|
|
|
outputs:
|
|
is_latest_version: ${{ steps.publish_step.outputs.is_latest_version }}
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Run our setup
|
|
uses: ./.github/actions/setup
|
|
|
|
- name: Publish
|
|
id: publish_step
|
|
run: yarn tsx ./scripts/publish-manual.ts
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
R2_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }}
|
|
R2_ACCESS_KEY_SECRET: ${{ secrets.R2_ACCESS_KEY_SECRET }}
|
|
TLDRAW_BEMO_URL: https://demo.tldraw.xyz
|
|
|
|
publish_templates:
|
|
name: Publishes code templates to separate repositories
|
|
uses: tldraw/tldraw/.github/workflows/publish-templates.yml@main
|
|
if: ${{ needs.deploy.outputs.is_latest_version == 'true' }}
|
|
secrets:
|
|
VITE_TEMPLATE_REPO_SSH_DEPLOY_KEY: ${{ secrets.VITE_TEMPLATE_REPO_SSH_DEPLOY_KEY }}
|
|
NEXTJS_TEMPLATE_REPO_SSH_DEPLOY_KEY: ${{ secrets.NEXTJS_TEMPLATE_REPO_SSH_DEPLOY_KEY }}
|
|
needs: deploy
|