Skip to content

Commit

Permalink
Remove line continuation in sed
Browse files Browse the repository at this point in the history
  • Loading branch information
mwithi committed Sep 15, 2024
1 parent b84f330 commit 24c3584
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ jobs:
cp rsc/database.properties.dist rsc/database.properties
cp rsc/log4j2-spring.properties.dist rsc/log4j2-spring.properties
cp rsc/settings.properties.dist rsc/settings.properties
sed -e "s/JWT_TOKEN_SECRET/${{ steps.jwt.outputs.token }}/g" \
-e "s/API_HOST/localhost/g" \
-e "s/API_PORT/8080/g" rsc/application.properties.dist > rsc/application.properties
sed -e "s/JWT_TOKEN_SECRET/${{ steps.jwt.outputs.token }}/g" -e "s/API_HOST/localhost/g" -e "s/API_PORT/8080/g" rsc/application.properties.dist > rsc/application.properties
mvn install -DskipTests=true
echo ${{ steps.extract_branch.outputs.branch }}
Expand Down

0 comments on commit 24c3584

Please sign in to comment.