Skip to content

fix: remove unnecessary code #24

fix: remove unnecessary code

fix: remove unnecessary code #24

Workflow file for this run

name: Auto Release
on:
push:
branches:
- main
jobs:
autorelease:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "14"
registry-url: "https://registry.npmjs.org/"
scope: "@inubekit"
always-auth: true
- name: Configure Git
run: |
git config --global user.email cmarin@sistemasenlinea.com.co
git config --global user.name cmarin001
- name: Install Dependencies
run: npm install
- name: Run auto shipit
run: npx auto shipit
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}