Skip to content

[v0.2.0-beta.8] New split method and jobs introducing #7

[v0.2.0-beta.8] New split method and jobs introducing

[v0.2.0-beta.8] New split method and jobs introducing #7

Workflow file for this run

name: Publish package
on:
- push
jobs:
publish-npm:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.1.26
- run: bun i
- run: bun run build
- run: bun run lint
- run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- uses: kirick13/notify-action@v1
with:
telegram-bot-token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
telegram-chat-id: ${{ secrets.TELEGRAM_CHAT_ID }}