Skip to content

Commit

Permalink
chore: 0.1.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
npalm committed Mar 7, 2021
1 parent ba7e57f commit 6ca0a25
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
branches:
- main
- develop
tags:
- '*'
pull_request:


Expand Down Expand Up @@ -33,10 +35,10 @@ jobs:
run: npm build

- name: Publish
if: ${{ startsWith(github.ref, 'refs/tags/' && matrix.node-version == 14 ) }}
if: ${{ startsWith(github.ref, 'refs/tags/') && matrix.node-version == 14 }}
##if: ${{ github.event_name != 'pull_request' && matrix.node-version == 14 }}
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
npm publish
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "action-docs",
"version": "0.0.21-beta",
"version": "0.1.0-beta.1",
"description": "Generate GitHub action docs based on action.yml",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 6ca0a25

Please sign in to comment.