Skip to content

CLI: Only ignore deprecation warnings (#509) #323

CLI: Only ignore deprecation warnings (#509)

CLI: Only ignore deprecation warnings (#509) #323

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: write
pull-requests: write
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
# See https://github.com/changesets/action/issues/187
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
- name: Setup Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 8
run_install: true
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
# This expects us to have a script called release which does a build for our packages and calls changeset publish
publish: pnpm release
env:
CLI_SENTRY_DSN: ${{ secrets.CLI_SENTRY_DSN }}
CLI_SENTRY_ENABLED: 'true'
GITHUB_TOKEN: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
LATITUDE_SERVER_HOST: ${{ secrets.LATITUDE_SERVER_HOST }}
LATITUDE_SERVER_PORT: ${{ secrets.LATITUDE_SERVER_PORT }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
TELEMETRY_CLIENT_KEY: ${{ secrets.TELEMETRY_CLIENT_KEY }}
TELEMETRY_URL: ${{ secrets.TELEMETRY_URL }}