Skip to content

Commit

Permalink
Fix tmpdir copy
Browse files Browse the repository at this point in the history
  • Loading branch information
ianks committed Jul 14, 2023
1 parent f4288dc commit bbb6d44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cross-gem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ jobs:
mkdir -p $outdir
echo "::group::Copy bindings"
find target/ -name "bindings*" -exec cp {} $outdir/artifacts \;
find target -name "bindings*" -exec cp -v {} $outdir/target \;
echo "::endgroup::"
echo "::group::Copy cfg-capture"
find target/ -name "cfg-capture*" -exec cp {} $outdir/artifacts \;
find target -name "cfg-capture*" -exec cp -v {} $outdir/target \;
echo "::endgroup::"
echo "::group::Copy Build config"
cp -r tmp/ $outdir/tmp
cp -rv tmp/${{ matrix.ruby-platform }} $outdir/tmp
echo "::endgroup::"
echo "rb-sys-version=$(bundle exec rb-sys-dock --version)" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit bbb6d44

Please sign in to comment.