File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -80,14 +80,15 @@ jobs:
8080 --deployment-group-name ${{ env.CODE_DEPLOY_DEPLOYMENT_GROUP_NAME }} \
8181 --s3-location bucket=${{ env.S3_BUCKET_NAME }},key=${{ github.sha }}.zip,bundleType=zip \
8282 --region ${{ env.AWS_REGION }}
83- - name: Replace application.properties secrets
83+
84+
85+ - name: Replace application.properties secrets
8486 run: |
8587 sed -i "s|\${mysql_url}|${{ secrets.MYSQL_URL }}|g" src/main/resources/application.properties
8688 sed -i "s|\${mysql_username}|${{ secrets.MYSQL_USERNAME }}|g" src/main/resources/application.properties
8789 sed -i "s|\${mysql_password}|${{ secrets.MYSQL_PASSWORD }}|g" src/main/resources/application.properties
8890 sed -i "s|\${jwt_key}|${{ secrets.JWT_KEY }}|g" src/main/resources/application.properties
89-
90-
91+
9192 - name: Build with Gradle
9293 run: ./gradlew clean build -x test
9394
You can’t perform that action at this time.
0 commit comments