Skip to content

Remove RU localization from the list (#333) #86

Remove RU localization from the list (#333)

Remove RU localization from the list (#333) #86

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
name: Prepare release
runs-on: ubuntu-latest
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/[email protected]
- name: ⬇️ Checkout Repo
uses: actions/checkout@v3
- name: ⬢ Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "*"
cache: npm
- name: 📦 Install Packages
run: npm ci
- name: 📝 Generate TOC
run: npm run toc
- name: 💅 Format files
run: npm run format
- name: 🚀 Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}