Skip to content

Commit d1e523e

Browse files
authored
fix: Fixes NuGet Release failure (#423)
1 parent c284089 commit d1e523e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,15 @@ jobs:
208208
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
209209
with:
210210
path: .repo
211+
fetch-depth: 0
211212
- name: Install Dependencies
212213
run: cd .repo && yarn install --check-files --frozen-lockfile
213214
- name: Create dotnet artifact
214-
run: cd .repo && npx projen compile && npx projen package:dotnet
215+
run: |
216+
cd .repo
217+
npx projen bump
218+
npx projen compile
219+
npx projen package:dotnet
215220
- name: Collect dotnet Artifact
216221
run: mv .repo/dist/dotnet dist/dotnet
217222
- name: Extract Version

0 commit comments

Comments
 (0)