We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76d53de commit 592189eCopy full SHA for 592189e
1 file changed
.github/workflows/dotnet-desktop.yml
@@ -6,6 +6,11 @@ on:
6
pull_request:
7
branches: ["main"]
8
9
+# Add permissions configuration
10
+permissions:
11
+ contents: write
12
+ packages: write
13
+
14
env:
15
SOLUTION_PATH: SimpleMapper/SimpleMapper.sln
16
PACKAGE_PROJECT_PATH: SimpleMapper/SimpleMapper/SimpleMapper.csproj
@@ -18,6 +23,8 @@ jobs:
18
23
runs-on: ubuntu-latest
19
24
steps:
20
25
- uses: actions/checkout@v4
26
+ with:
27
+ fetch-depth: 0 # Required for tag history
21
28
22
29
- name: Setup .NET
30
uses: actions/setup-dotnet@v3
0 commit comments