Skip to content

Commit 5a6d2da

Browse files
committed
Add sandbox.yml
1 parent e85b290 commit 5a6d2da

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Diff for: .github/workflows/sandbox.yml

+20
Original file line numberDiff line numberDiff line change
@@ -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+
shell: pwsh
17+
run: >
18+
Get-Content '${{github.workspace}}/nuget.config' | echo
19+
20+

0 commit comments

Comments
 (0)