Skip to content

feat(universal-router-sdk): Bump router-sdk version (#475) #700

feat(universal-router-sdk): Bump router-sdk version (#475)

feat(universal-router-sdk): Bump router-sdk version (#475) #700

name: Release
on:
push:
branches:
- beta
- main
jobs:
release:
name: Release
environment:
name: production
runs-on:
group: npm-deploy
permissions:
contents: write
id-token: write
steps:
- uses: bullfrogsec/bullfrog@dcde5841b19b7ef693224207a7fdec67fce604db # v0.8.3
with:
# List of IPs to allow outbound connections to.
# By default, only localhost and IPs required for the essential operations of Github Actions are allowed.
#allowed-ips: |
# List of domains to allow outbound connections to.
# Wildcards are accepted. For example, if allowing `*.google.com`, this will allow `www.google.com`, `console.cloud.google.com` but not `google.com`.
# By default, only domains required for essential operations of Github Actions and uploading job summaries are allowed.
# Refer to https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#communication-requirements-for-github-hosted-runners-and-github for additional domains that should be allowed for additional Github Actions features.
#allowed-domains:
# The egress policy to enforce. Valid values are `audit` and `block`.
# Default: audit
egress-policy: audit
- name: Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
with:
submodules: "true"
fetch-depth: 2
- name: Setup Node
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7
with:
cache: yarn
node-version: 22
- name: Install dependencies
run: yarn --immutable
- name: Build SDK's
run: yarn g:build
- name: Release Needed SDK's
run: yarn g:release
env:
GITHUB_TOKEN: ${{ github.token }}