Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
shimat committed Jan 24, 2021
2 parents cdb626c + a17d8d4 commit 2df68fd
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/publish_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Download windows artifact
uses: dawidd6/action-download-artifact@v2
with:
Expand All @@ -30,4 +32,15 @@ jobs:
name: artifacts_macos_10

- run: |
ls -l
ls -l
- name: Install .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x'

- run: |
for f in $(find $PWD -maxdepth 1 -regex ".+\.s?nupkg"); do
dotnet run --project tool/OpenCvSharp.NupkgBetaRemover --configuration Release -- "$f"
done
ls -l

0 comments on commit 2df68fd

Please sign in to comment.