fix: remove unnecessary code #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |