Skip to content

fix: nexo config

fix: nexo config #419

Workflow file for this run

name: Release
on:
push:
branches:
- "main"
- "next"
- "1.x"
env:
HUSKY: 0
CI: true
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: "yarn"
node-version-file: ".nvmrc"
- name: Configure access to private npm packages
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
# No lint or prettier here since they were supposed to run on PR action
- name: Build
run: |
yarn install --frozen-lockfile
yarn build
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}