mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-18 11:11:34 +03:00
14 lines
386 B
YAML
14 lines
386 B
YAML
name: Setup @sentry/cli
|
|
description: 'Setup @sentry/cli'
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: 'Install @sentry/cli from brew'
|
|
if: runner.os == 'macos'
|
|
shell: bash
|
|
run: brew install getsentry/tools/sentry-cli
|
|
- name: 'Install @sentry/cli from npm'
|
|
if: runner.os != 'macos'
|
|
shell: bash
|
|
run: sudo npm install -g @sentry/cli --unsafe-perm
|