Skip to content

fix: update styles as per design #57

fix: update styles as per design

fix: update styles as per design #57

Workflow file for this run

name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
release:
name: Release
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: main
- name: Setup pnpm 9
uses: pnpm/action-setup@v4
with:
version: 9.3.0
- name: Setup Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: 18.x
- name: Install Dependencies 🔧
run: pnpm i
- name: Build Step 🔧
env:
CI: ""
run: npm run ci:build
- name: Create .npmrc
run: |
cat << EOF > "$HOME/.npmrc"
//registry.npmjs.org/:_authToken=$NPM_TOKEN
EOF
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Bump Package Version
run: npm run bump-version
working-directory: ./packages/raystack
env:
GIT_REFNAME: ${{ github.ref_name }}
- name: Run Release 🚀
run: npm run release:ci
working-directory: ./packages/raystack
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}