File tree 1 file changed +4
-6
lines changed
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 31
31
32
32
- name : Initialize
33
33
run : >
34
- BRANCH=${GITHUB_REF#refs/heads/};
35
- curl -O -s "https://raw.githubusercontent.com/linked-planet/ktorbase/$BRANCH/init.sh";
36
- sh ./init.sh /tmp com.linked-planet ktor-example "$BRANCH";
34
+ curl -O -s "https://raw.githubusercontent.com/linked-planet/ktorbase/master/init.sh";
35
+ sh ./init.sh /tmp com.linked-planet ktor-example "master";
37
36
echo "Creating temporary repository with initial version ...";
38
37
cd /tmp/com.linked-planet.ktor-example;
39
38
git init;
44
43
45
44
- name : Update
46
45
run : >
47
- BRANCH=${GITHUB_REF#refs/heads/};
48
- curl -O -s "https://raw.githubusercontent.com/linked-planet/ktorbase/$BRANCH/update.sh";
49
- sh ./update.sh /tmp/com.linked-planet.ktor-example com.linked-planet ktor-example "$BRANCH";
46
+ curl -O -s "https://raw.githubusercontent.com/linked-planet/ktorbase/master/update.sh";
47
+ sh ./update.sh /tmp/com.linked-planet.ktor-example com.linked-planet ktor-example "master";
50
48
echo "Comparing updated version with initial version ...";
51
49
cd /tmp/com.linked-planet.ktor-example;
52
50
git add .;
You can’t perform that action at this time.
0 commit comments