Skip to content

Commit

Permalink
Fix Nuget order of initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
richardbar committed Mar 16, 2024
1 parent dda0ce9 commit d07af0d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/.NET Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Add GitHub Nuget registry
run: dotnet nuget add source https://nuget.pkg.github.com/SPIN-Space-Innovation/index.json -n SPIN-github -u SPIN-Space-Innovation --store-password-in-clear-text -p "${{ secrets.PACKAGE }}"
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.x
- name: Add GitHub Nuget registry
run: dotnet nuget add source https://nuget.pkg.github.com/SPIN-Space-Innovation/index.json -n SPIN-github -u SPIN-Space-Innovation --store-password-in-clear-text -p "${{ secrets.PACKAGE }}"
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/.NET Package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Add GitHub Nuget registry
run: dotnet nuget add source https://nuget.pkg.github.com/SPIN-Space-Innovation/index.json -n SPIN-github -u SPIN-Space-Innovation --store-password-in-clear-text -p "${{ secrets.PACKAGE }}"
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.x
- name: Add GitHub Nuget registry
run: dotnet nuget add source https://nuget.pkg.github.com/SPIN-Space-Innovation/index.json -n SPIN-github -u SPIN-Space-Innovation --store-password-in-clear-text -p "${{ secrets.PACKAGE }}"
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down

0 comments on commit d07af0d

Please sign in to comment.