Skip to content

Commit

Permalink
chore: release 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
andrevenancio committed Aug 1, 2022
1 parent accaa9e commit b75c0bf
Show file tree
Hide file tree
Showing 3 changed files with 281 additions and 346 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Publish

on:
release:
types: [published]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: yarn install
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@versumstudios/cli",
"version": "1.3.1",
"version": "1.3.2",
"preferGlobal": true,
"license": "Apache-2.0",
"description": "The command-line interface for versum",
Expand All @@ -24,7 +24,8 @@
"local:link": "yarn local:uninstall && yarn local:install",
"prettier": "prettier --write ./src",
"eslint": "eslint \"**/*.{ts,tsx}\" --fix",
"prepare": "husky install"
"prepare": "npm run build",
"prepublishOnly": "npm run eslint"
},
"files": [
"bin"
Expand Down Expand Up @@ -70,10 +71,10 @@
"commander": "^9.4.0",
"got": "^12.3.0",
"inquirer": "8.0.0",
"node-fetch": "2.6.2",
"node-fetch": "2.6.7",
"objects-to-csv": "^1.3.6",
"ora": "5.4.1",
"tar": "^6.1.11",
"update-notifier": "5.1.0"
"update-notifier": "^6.0.2"
}
}
Loading

0 comments on commit b75c0bf

Please sign in to comment.