Skip to content

Commit 6c21095

Browse files
committed
fix: ci
1 parent bb3131d commit 6c21095

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

ansible/cicd-vultr.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,12 @@
1919

2020
- name: pull latest code on main branch
2121
git:
22-
repo: https://github.com/plh97/learn-java.git
23-
dest: ~/learn-java
22+
repo: https://github.com/plh97/java-learn.git
23+
dest: ~/java-learn
2424
force: true
2525
version: main
2626

2727
- name: deploy
2828
command:
29-
chdir: ~/learn-java
29+
chdir: ~/java-learn
3030
cmd: docker compose -f ./docker-compose.dev.yml up -d
31-
...

ansible/init-vultr.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,17 @@
2020
- name: Delete content & directory
2121
file:
2222
state: absent
23-
path: ~/learn-java/
23+
path: ~/java-learn/
2424

2525
- name: Clone Repository
2626
git:
27-
repo: https://github.com/plh97/learn-java.git
28-
dest: ~/learn-java
27+
repo: https://github.com/plh97/java-learn.git
28+
dest: ~/java-learn
2929
clone: yes
3030
update: yes
3131
version: main
3232

3333
- name: deploy
3434
command:
35-
chdir: ~/learn-java
35+
chdir: ~/java-learn
3636
cmd: docker compose -f ./docker-compose.dev.yml up -d
37-
...

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.0",
44
"private": true,
55
"main": "index.js",
6-
"repository": "https://github.com/plh97/learn-java.git",
6+
"repository": "https://github.com/plh97/java-learn.git",
77
"author": "plh97 <pengliheng111@gmail.com>",
88
"license": "MIT",
99
"scripts": {

0 commit comments

Comments
 (0)