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 13, 2023
1 parent f4288dc commit 7bc7990
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 @@ -66,7 +66,7 @@ jobs:
- name: "Copy bindings and cfg-capture"
id: capture
run: |
outdir=tmp/upload/${{ matrix.ruby-platform }}
outdir=/tmp/upload/${{ matrix.ruby-platform }}
mkdir -p $outdir
echo "::group::Copy bindings"
Expand All @@ -78,7 +78,7 @@ jobs:
echo "::endgroup::"
echo "::group::Copy Build config"
cp -r tmp/ $outdir/tmp
cp -r tmp/ $outdir
echo "::endgroup::"
echo "rb-sys-version=$(bundle exec rb-sys-dock --version)" >> $GITHUB_OUTPUT
Expand All @@ -87,5 +87,5 @@ jobs:
with:
name: rb-sys-bindings-${{ steps.capture.outputs.rb-sys-version }}
path: |
tmp/upload/
/tmp/upload/
if-no-files-found: error

0 comments on commit 7bc7990

Please sign in to comment.