We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12beeac commit e45feaaCopy full SHA for e45feaa
.github/actions/dotnet/build/action.yml
@@ -15,12 +15,13 @@ runs:
15
- name: Zip build
16
shell: bash
17
run: |
18
- mkdir .\builds\lib\netstandard2.0
19
- cp -r .\src\ExCSS\bin\Release\netstandard2.0\ .\builds\lib\netstandard2.0\
20
- zip -r ./artifacts/build.zip ./builds
+ mkdir ls $GITHUB_WORKSPACE\builds\lib\netstandard2.0
+ ls $GITHUB_WORKSPACE
+ cp -r ls $GITHUB_WORKSPACE\src\ExCSS\bin\Release\netstandard2.0\ ls $GITHUB_WORKSPACE\builds\lib\netstandard2.0\
21
+ zip -r .\artifacts/build.zip ls $GITHUB_WORKSPACE\builds
22
23
- name: Upload build
24
uses: actions/upload-artifact@v4
25
with:
26
name: build.zip
- path: ./artifacts
27
+ path: .\artifacts
0 commit comments