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
Change project name to "arduino/setup-task"
The Task documentation consistently refers to the tool as "Task". Taskfile is the term used for Task's configuration file.
This action is setting up the Task tool, not setting up the Task configuration file, so "arduino/setup-task" is more
appropriate than "arduino/setup-taskfile".
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,6 @@ See [step-debug-logs](https://github.com/actions/toolkit/blob/master/docs/action
68
68
69
69
Instructions for releasing a new version of the action:
70
70
71
-
1. If the release will increment the major version, update the action refs in the examples in README.md (e.g., `uses: arduino/setup-taskfile@v1` -> `uses: arduino/setup-taskfile@v2`).
71
+
1. If the release will increment the major version, update the action refs in the examples in README.md (e.g., `uses: arduino/setup-task@v1` -> `uses: arduino/setup-task@v2`).
72
72
1. Create a [GitHub release](https://docs.github.com/en/github/administering-a-repository/managing-releases-in-a-repository#creating-a-release), following the `vX.Y.Z` tag name convention. Make sure to follow [the SemVer specification](https://semver.org/).
73
73
1. Rebase the release branch for that major version (e.g., `v1` branch for the `v1.x.x` tags) on the tag. If no branch exists for the release's major version, create one.
A [GitHub Actions](https://docs.github.com/en/actions) action that makes the [Task](https://taskfile.dev/#/) task runner / build tool available to use in your workflow.
13
13
@@ -32,32 +32,32 @@ It will be convenient to use [`${{ secrets.GITHUB_TOKEN }}`](https://docs.github
32
32
To get the action's default version of Task just add this step:
33
33
34
34
```yaml
35
-
- name: Install Taskfile
36
-
uses: arduino/setup-taskfile@main
35
+
- name: Install Task
36
+
uses: arduino/setup-task@main
37
37
```
38
38
39
39
If you want to pin a major or minor version you can use the `.x` wildcard:
40
40
41
41
```yaml
42
-
- name: Install Taskfile
43
-
uses: arduino/setup-taskfile@main
42
+
- name: Install Task
43
+
uses: arduino/setup-task@main
44
44
with:
45
45
version: '2.x'
46
46
```
47
47
48
48
To pin the exact version:
49
49
50
50
```yaml
51
-
- name: Install Taskfile
52
-
uses: arduino/setup-taskfile@main
51
+
- name: Install Task
52
+
uses: arduino/setup-task@main
53
53
with:
54
54
version: '2.6.1'
55
55
```
56
56
57
57
## Security
58
58
59
59
If you think you found a vulnerability or other security-related bug in this project, please read our
60
-
[security policy](https://github.com/arduino/setup-taskfile/security/policy) and report the bug to our Security Team 🛡️
60
+
[security policy](https://github.com/arduino/setup-task/security/policy) and report the bug to our Security Team 🛡️
0 commit comments