Skip to content

feat(oidc): pass the target app_id to the exchange (monorepo CI deploys) #89

feat(oidc): pass the target app_id to the exchange (monorepo CI deploys)

feat(oidc): pass the target app_id to the exchange (monorepo CI deploys) #89

Workflow file for this run

name: Release
permissions:
contents: write # necesario para push de commits y tags
pull-requests: write
issues: write
id-token: write
on:
push:
branches:
- main
- next
- beta
jobs:
release:
name: release
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "lts/*"
cache: "npm"
- run: npm ci
- run: npm test
- run: npm run build
- run: npm audit signatures
- run: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}