Skip to content

Commit 520bd79

Browse files
committed
Install Task in release workflow
The "Build" step of the workflow relies on Task being installed. Without this step, the workflow fails: task: command not found
1 parent 645cebf commit 520bd79

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: .github/workflows/release.yml

+6
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ jobs:
2222
filter-regex: '^\[([sS][kK][iI][pP]|[cC][hH][aA][nN][gG][eE][lL][oO][gG])[ ,-]([cC][hH][aA][nN][gG][eE][lL][oO][gG]|[sS][kK][iI][pP])\].*'
2323
changelog-file-path: "dist/CHANGELOG.md"
2424

25+
- name: Install Taskfile
26+
uses: arduino/actions/setup-taskfile@master
27+
with:
28+
repo-token: ${{ secrets.GITHUB_TOKEN }}
29+
version: 3.x
30+
2531
- name: Build
2632
run: task dist:all
2733

0 commit comments

Comments
 (0)