Skip to content

cli: refactor build, dev, start commands (#111) #104

cli: refactor build, dev, start commands (#111)

cli: refactor build, dev, start commands (#111) #104

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
environment: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: 20
- uses: pnpm/action-setup@v4
with:
version: 9.10.0
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: pnpm install --strict-peer-dependencies=false --no-frozen-lockfile
- name: Run build
run: pnpm build
- name: Set git credentials
run: |
git config user.name "Capy Bot"
git config user.email "capy-bot@apibara.com"
git remote set-url origin "https://${GIT_TOKEN}@github.com/apibara/typescript-sdk"
env:
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}
- name: Publish package
run: pnpm beachball publish --access public --token "${NPM_TOKEN}" --tag next
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}