Skip to content

Commit

Permalink
1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
h.u.g.u.rp committed Jun 29, 2023
1 parent 6d1744c commit fc08883
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/publish-to-npm-registry.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# https://github.com/marketplace/actions/npm-publish
name: Publish Package to npm
on:
release:
types: [created]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm install
- run: npm test
publish:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm install
- run: npm run types
- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
access: public
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "i4k-find",
"version": "0.0.10",
"version": "1.2.0",
"description": "Action engine",
"main": "main.js",
"devDependencies": {
Expand Down

0 comments on commit fc08883

Please sign in to comment.