Skip to content

Commit

Permalink
Change working directory for workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
iadgovuser29 committed Apr 12, 2024
1 parent 89144f4 commit e60a8b7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/dotnet-build-hardwaremanifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Go to HardwareManifest directory
run: cd dotnet/HardwareManifest
- name: Restore dependencies
working-directory: dotnet/HardwareManifestPlugin
run: dotnet restore
- name: Build
working-directory: dotnet/HardwareManifestPlugin
run: dotnet build
- name: Test
working-directory: dotnet/HardwareManifestPlugin
run: dotnet test
- name: Pack
working-directory: dotnet/HardwareManifestPlugin
run: dotnet pack
7 changes: 5 additions & 2 deletions .github/workflows/dotnet-build-paccor_scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,19 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Go to paccor_scripts directory
run: cd dotnet/paccor_scripts
- name: Restore dependencies
working-directory: dotnet/paccor_scripts
run: dotnet restore
- name: Build
working-directory: dotnet/paccor_scripts
run: dotnet build
- name: Test
working-directory: dotnet/paccor_scripts
run: dotnet test
- name: Pack
working-directory: dotnet/paccor_scripts
run: dotnet pack
working-directory: dotnet/paccor_scripts/paccor_scripts
- name: Publish
run: |
dotnet -r linux-x64 -c Release
Expand Down

0 comments on commit e60a8b7

Please sign in to comment.