We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8146853 + 629b78f commit ceadbf7Copy full SHA for ceadbf7
.github/workflows/oracle_server_cd_develop.yml
@@ -48,7 +48,9 @@ jobs:
48
- name: make application.properties
49
run: |
50
cd ./backend/src/main/resources
51
- echo "${{ secrets.APPLICATION_PROD_DEV }}" > ./application.properties
+ cat > application.properties <<'EOF'
52
+ ${{ secrets.APPLICATION_PROD_DEV }}
53
+ EOF
54
55
- name: make firebase.json
56
backend/src/main/java/moadong/global/config/WebConfig.java
@@ -1,5 +1,6 @@
1
package moadong.global.config;
2
3
+import java.util.Arrays;
4
import java.util.List;
5
import moadong.global.util.OctetStreamReadMsgConverter;
6
import org.springframework.beans.factory.annotation.Autowired;
0 commit comments