mirror of https://github.com/actions/toolkit
update some naming
parent
4c46ecfd35
commit
ac5434c423
|
@ -24,7 +24,7 @@ Actions are units of work which can either run in a container or on the host mac
|
|||
|
||||
[Choosing an action type](docs/action-types.md): Outlines the differences and why you would want to create a host or a container based action.
|
||||
|
||||
[JavaScript Action Walthrough](docs/node12-action.md): Create an action which runs on the host using the toolkit
|
||||
[JavaScript Action Walthrough](docs/javascript-action.md): A full walkthrough creating an action using the toolkit along with TypeScript and Jest for unit testing. It also covers a branching strategy for versioning and safely testing and releasing an action.
|
||||
|
||||
[Docker Action Walkthrough](docs/container-action.md): Create an action that is delivered as a container and run with docker.
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
# Creating a JavaScript Action
|
||||
|
||||
The [node12-template](https://github.com/actions/node12-template) repo contains everything you need to get started.
|
||||
The [javascript-template](https://github.com/actions/javascript-template) repo contains everything you need to get started.
|
||||
|
||||
# Create a Repo from the Template
|
||||
|
||||
Navigate to https://github.com/actions/node12-template
|
||||
Navigate to https://github.com/actions/javascript-template
|
||||
|
||||
Click on `Use this template` to create the repo for your action.
|
||||
|
Loading…
Reference in New Issue