Skip to content

Commit

Permalink
Fixed: Issue where the L argument is not available on Alpine Linux's …
Browse files Browse the repository at this point in the history
…xargs command.
  • Loading branch information
jcavalieri authored Jul 19, 2022
1 parent 964589f commit faa9e5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ cd "${WORKING_DIRECTORY:-.}"
echo "Building the gem"
find . -name '*.gemspec' -maxdepth 1 -exec gem build {} \;
echo "Pushing the built gem to GitHub Package Registry"
find . -name '*.gem' -maxdepth 1 -print0 | xargs -0L1 gem push --key github --host "https://rubygems.pkg.github.com/${OWNER}"
find . -name '*.gem' -maxdepth 1 -print0 | xargs -0 gem push --key github --host "https://rubygems.pkg.github.com/${OWNER}"

0 comments on commit faa9e5b

Please sign in to comment.