We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e85b290 commit 5a6d2daCopy full SHA for 5a6d2da
.github/workflows/sandbox.yml
@@ -0,0 +1,20 @@
1
+name: Sandbox
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ try:
8
+ runs-on: windows-latest
9
+ steps:
10
+ - name: Write nuget.config
11
+ shell: pwsh
12
+ run: >
13
+ @('<packageSources>', ' <add key="action" value="${{github.workspace}}/packages/" />', '</packageSources>')
14
+ | Set-Content -Path '${{github.workspace}}/nuget.config'
15
+ - name: Read nuget.config
16
17
18
+ Get-Content '${{github.workspace}}/nuget.config' | echo
19
20
0 commit comments