Skip to content

chore: add symlinks to license and readme #17

chore: add symlinks to license and readme

chore: add symlinks to license and readme #17

Workflow file for this run

name: "Release"
on:
push:
branches:
- main
paths:
- 'apps/nefi/**'
permissions:
contents: read
jobs:
release:
runs-on: ubuntu-latest
defaults:
run:
working-directory: apps/nefi
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.ACTIONS_BRANCH_PROTECTION_BYPASS }}
- name: Install Bun as package manager
uses: oven-sh/setup-bun@v2
- name: Install Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Prepare project to publish
run: bun run prepublish
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: bun run release