Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,15 @@ using the Action, so be careful not to `git add` all the development dependencie
you might have under your local `node_modules`. To release a new version of the
Action the workflow should be the following:


1. `npm install` to add all the dependencies, included development.
1. `npm run test` to see everything works as expected.
1. `npm build` to build the Action under the `./lib` folder.
1. `npm build`
1. `rm -rf node_modules` to remove all the dependencies.
1. `npm install --production` to add back **only** the runtime dependencies.
1. `npm install --production`
1. `git add lib node_modules` to check in the code that matters.
1. open a PR and request a review.

1. `yarn run release` to build the Action under the `./lib` folder, and to add **only** the runtime dependencies under the `./node_modules` folder.
1. `git add lib node_modules` to check in the code that matters.
1. open a PR and request a review.
646 changes: 646 additions & 0 deletions node_modules/.yarn-integrity

Large diffs are not rendered by default.

7 changes: 0 additions & 7 deletions node_modules/@actions/core/LICENSE.md

This file was deleted.

71 changes: 57 additions & 14 deletions node_modules/@actions/core/README.md

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

8 changes: 4 additions & 4 deletions node_modules/@actions/core/lib/command.js

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

2 changes: 1 addition & 1 deletion node_modules/@actions/core/lib/command.js.map

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

28 changes: 23 additions & 5 deletions node_modules/@actions/core/lib/core.d.ts

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

53 changes: 40 additions & 13 deletions node_modules/@actions/core/lib/core.js

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

2 changes: 1 addition & 1 deletion node_modules/@actions/core/lib/core.js.map

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

Loading