Skip to content

build(package.json): updated ee-docs-importer to 0.0.4 (#82) #5

build(package.json): updated ee-docs-importer to 0.0.4 (#82)

build(package.json): updated ee-docs-importer to 0.0.4 (#82) #5

Workflow file for this run

name: Release
on:
push:
branches:
- release/*
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 0 # Without this changelog generation will only read from the last commit
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x # Use your project's Node.js version
cache: 'npm'
- name: Configure Git
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
- name: Install dependencies
run: npm install
- name: Run release-it
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx release-it