Skip to content

Refactored async initialization logic for Mixpanel, Grafana, and Laun… #130

Refactored async initialization logic for Mixpanel, Grafana, and Laun…

Refactored async initialization logic for Mixpanel, Grafana, and Laun… #130

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions: {}
jobs:
release:
name: Release
permissions:
contents: write # to create release (changesets/action)
issues: write # to post issue comments (changesets/action)
pull-requests: write # to create pull request (changesets/action)
if: github.repository == 'replayio/replay-cli'
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
cache: "yarn"
- run: yarn --immutable
- run: yarn run build
- name: Set up NPM token
run: |
echo "npmAuthToken: $NPM_TOKEN" >> .yarnrc.yml
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create Release Pull Request or Publish to npm
uses: changesets/action@v1
with:
publish: yarn run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}