Skip to content

chore: fix commands that run on CI #21

chore: fix commands that run on CI

chore: fix commands that run on CI #21

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm ci
- name: Initialize Git user
run: |
git config --global user.email "[email protected]"
git config --global user.name "Douglas Moura"
- name: Release
run: npm run release --ci
env:
CI: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}