Skip to content

Commit

Permalink
Checkout on release for hub
Browse files Browse the repository at this point in the history
  • Loading branch information
AshleighAdams committed Aug 3, 2023
1 parent e1552f2 commit 274dbae
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/deploy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
- build
- build-standalone-binaries
steps:
- *checkout
- *setup-dotnet
- *setup-nuget
- *download-artifacts
- name: 'Create Release'
run: |
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/deploy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,24 @@ jobs:
- build
- build-standalone-binaries
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
3.1.x
5.0.x
6.x
7.x
- name: Setup NuGet
run: |
dotnet nuget update source github --store-password-in-clear-text --username AshleighAdams --password ${{ secrets.PERSONAL_ACCESS_TOKEN }}
dotnet nuget enable source github
- name: Download Artifacts
uses: actions/download-artifact@v2

Expand Down

0 comments on commit 274dbae

Please sign in to comment.