Skip to content

Add Sentry provider #229

Add Sentry provider

Add Sentry provider #229

Workflow file for this run

name: generate
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: write
packages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: install pulumi
uses: pulumi/setup-pulumi@v2
- uses: actions/setup-node@v4
with:
node-version: "24"
registry-url: "https://registry.npmjs.org"
- run: |
if [ "${{ github.ref }}" = "refs/heads/master" ]; then
bun run generate.ts
else
bun run generate.ts --dry
fi
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}