We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3a1ab7 commit 0dff479Copy full SHA for 0dff479
.github/workflows/main.yml
@@ -31,10 +31,16 @@ jobs:
31
with:
32
dotnet-version: "8.0.x"
33
34
- - name: Install Cake.Tool
35
- run: |
36
- dotnet tool install --global Cake.Tool
37
- dotnet tool restore
+ - name: Run the Cake script
+ uses: cake-build/cake-action@v3
+ with:
+ script-path: ./build.cake
38
+ target: Pack
39
+
40
+ # - name: Install Cake.Tool
41
+ # run: |
42
+ # dotnet tool install --global Cake.Tool
43
+ # dotnet tool restore
44
- - name: Run Cake build
- run: dotnet cake --target=Pack
45
+ # - name: Run Cake build
46
+ # run: dotnet cake --target=Pack
0 commit comments