You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 1, 2022. It is now read-only.
4. Create a new branch named `hello-world`. This is the branch we will use to write our first Action. **Please do not capitalize letters unless I do, I run case-sensitive checks to make sure I can help you along the way!**
<details><summary>View GIF</summary><imgsrc="https://media.giphy.com/media/Wn03sc0QsywHHD1LeN/giphy.gif"alt="create folder for action example" /></details>
42
33
6. Navigate to the `hello-world` folder you just created:
43
34
`cd .github/actions/hello-world`
44
-
45
-
<details><summary>View GIF</summary><imgsrc="https://media.giphy.com/media/ckCMgczjpbjNwkfJq4/giphy.gif"alt="navigate to folder for action example" /></details>
46
-
47
35
7. Initialize a new project:
48
36
`npm init -y`
49
-
50
-
<details><summary>View GIF</summary><imgsrc="https://media.giphy.com/media/mEW0fJYx4oUjdgYHDV/giphy.gif"alt="navigate to folder for action example" /></details>
51
-
52
37
8. Install the **core** dependency from the [GitHub ToolKit](https://github.com/actions/toolkit):
53
38
`npm install --save @actions/core`
54
-
<details><summary>View GIF</summary><imgsrc="https://media.giphy.com/media/H3kGNqDI24lNOEKk5k/giphy.gif"alt="navigate to folder for action example" /></details>
55
39
9. Commit those newly added files,we will remove the need to upload **node_modules** in a later step:
0 commit comments