Skip to content

Commit

Permalink
Fix move command
Browse files Browse the repository at this point in the history
  • Loading branch information
cschuchardt88 committed Jan 24, 2025
1 parent b09b346 commit 5476b2f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ jobs:
-p:DebugType=embedded \
-p:ServerGarbageCollection=true
# Copy 'libleveldb' library file
- name: Native Content (neo-cli)
working-directory: ${{ env.OUTPUT_PATH }}/${{ matrix.runtime }}
run: |
mv -v ./runtimes/${{ matrix.runtime }}/native/* .
rm -v -R runtimes
- name: Build (LevelDbStore)
run: |
dotnet build ./src/Plugins/LevelDBStore \
Expand All @@ -57,6 +64,7 @@ jobs:
- name: Remove (junk)
run: |
rm -v -R ${{ env.DIST_DIR }}/Plugins/LevelDBStore/runtimes
rm -v ${{ env.DIST_DIR }}/Plugins/LevelDBStore/Neo*
rm -v ${{ env.DIST_DIR }}/Plugins/LevelDBStore/*.pdb
rm -v ${{ env.DIST_DIR }}/Plugins/LevelDBStore/*.xml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Native Content (neo-cli)
working-directory: ${{ env.OUTPUT_PATH }}/${{ matrix.runtime }}
run: |
mv -vp ./runtimes/${{ matrix.runtime }}/native/* .
mv -v ./runtimes/${{ matrix.runtime }}/native/* .
rm -v -R runtimes
# Build the LevelDBStore plugin
Expand Down

0 comments on commit 5476b2f

Please sign in to comment.