Skip to content

Commit

Permalink
fix: restore tools before packaging app
Browse files Browse the repository at this point in the history
  • Loading branch information
vandycknick committed Feb 9, 2020
1 parent ce0a227 commit 45be48c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/release-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ jobs:
echo "::add-path::$(go env GOPATH)/bin"
shell: bash

- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '12.x'

- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v1
with:
Expand All @@ -29,6 +34,12 @@ jobs:
- name: Checkout code
uses: actions/checkout@v1

- name: Restore Tools
run: dotnet tool restore

- name: Install dependencies
run: dotnet nuke setup

- name: Package app
run: dotnet nuke

Expand Down

0 comments on commit 45be48c

Please sign in to comment.