Skip to content

Commit

Permalink
ci: fix sed for releasing @supabase/gotrue-js (#823)
Browse files Browse the repository at this point in the history
The stupid macOS incompatible `sed -i ''` option broke it.
  • Loading branch information
hf authored Dec 13, 2023
1 parent a0338cb commit f30daeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: |
for f in package.json package-lock.json
do
sed -i '' 's|\(["/]\)auth-js|\1gotrue-js|g' "$f"
sed -i 's|\(["/]\)auth-js|\1gotrue-js|g' "$f"
done
npx semantic-release -r 'https://github.com/supabase/gotrue-js.git'
Expand Down

0 comments on commit f30daeb

Please sign in to comment.