File tree Expand file tree Collapse file tree 2 files changed +52
-20
lines changed Expand file tree Collapse file tree 2 files changed +52
-20
lines changed Original file line number Diff line number Diff line change
1
+ name : Build and publish
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+
8
+ jobs :
9
+ build :
10
+ name : Build the project
11
+ runs-on : ubuntu-latest
12
+
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+
16
+ - name : Set up ruby-2.6
17
+ uses : actions/setup-ruby@v1
18
+ with :
19
+ ruby-version : ' 2.6'
20
+
21
+ - name : Configure git
22
+ env :
23
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
24
+ run : |
25
+ git config --global user.name github-actions
26
+ git config --global user.email [email protected]
27
+ git remote set-url origin "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
28
+
29
+ - name : Build and publish
30
+ run : |
31
+ bundle install
32
+ rake publish
Original file line number Diff line number Diff line change 12
12
json
13
13
celluloid (0.16.0 )
14
14
timers (~> 4.0.0 )
15
- chunky_png (1.3.8 )
15
+ chunky_png (1.4.0 )
16
16
coffee-script (2.4.1 )
17
17
coffee-script-source
18
18
execjs
31
31
sass (>= 3.2 , < 3.5 )
32
32
erubis (2.7.0 )
33
33
execjs (2.7.0 )
34
- ffi (1.9.18 )
35
- haml (5.0.2 )
34
+ ffi (1.14.2 )
35
+ haml (5.2.1 )
36
36
temple (>= 0.8.0 )
37
37
tilt
38
38
hike (1.2.3 )
39
- hitimes (1.2.6 )
39
+ hitimes (2.0.0 )
40
40
hooks (0.4.1 )
41
41
uber (~> 0.0.14 )
42
42
i18n (0.7.0 )
43
43
json (1.8.6 )
44
- kramdown (1.14 .0 )
44
+ kramdown (1.17 .0 )
45
45
libv8 (3.16.14.19 )
46
46
listen (2.10.1 )
47
47
celluloid (~> 0.16.0 )
83
83
middleman-syntax (2.0.0 )
84
84
middleman-core (~> 3.2 )
85
85
rouge (~> 1.0 )
86
- minitest (5.10 .3 )
87
- multi_json (1.12.1 )
88
- padrino-helpers (0.12.8.1 )
86
+ minitest (5.14 .3 )
87
+ multi_json (1.15.0 )
88
+ padrino-helpers (0.12.9 )
89
89
i18n (~> 0.6 , >= 0.6.7 )
90
- padrino-support (= 0.12.8.1 )
91
- tilt (~> 1.4.1 )
92
- padrino-support (0.12.8.1 )
90
+ padrino-support (= 0.12.9 )
91
+ tilt (>= 1.4.1 , < 3 )
92
+ padrino-support (0.12.9 )
93
93
activesupport (>= 3.1 )
94
- rack (1.6.8 )
94
+ rack (1.6.13 )
95
95
rack-test (0.6.3 )
96
96
rack (>= 1.0 )
97
97
rake (10.4.2 )
98
- rb-fsevent (0.10.2 )
99
- rb-inotify (0.9.10 )
100
- ffi (>= 0.5.0 , < 2 )
98
+ rb-fsevent (0.10.4 )
99
+ rb-inotify (0.10.1 )
100
+ ffi (~> 1.0 )
101
101
redcarpet (3.3.4 )
102
102
ref (2.0.0 )
103
103
rouge (1.9.1 )
104
104
sass (3.4.25 )
105
- sprockets (2.12.4 )
105
+ sprockets (2.12.5 )
106
106
hike (~> 1.2 )
107
107
multi_json (~> 1.0 )
108
108
rack (~> 1.0 )
@@ -112,16 +112,16 @@ GEM
112
112
sprockets-sass (1.3.1 )
113
113
sprockets (~> 2.0 )
114
114
tilt (~> 1.1 )
115
- temple (0.8.0 )
115
+ temple (0.8.2 )
116
116
therubyracer (0.12.3 )
117
117
libv8 (~> 3.16.14.15 )
118
118
ref
119
- thor (0.19.4 )
119
+ thor (1.1.0 )
120
120
thread_safe (0.3.6 )
121
121
tilt (1.4.1 )
122
122
timers (4.0.4 )
123
123
hitimes
124
- tzinfo (1.2.3 )
124
+ tzinfo (1.2.9 )
125
125
thread_safe (~> 0.1 )
126
126
uber (0.0.15 )
127
127
uglifier (2.7.2 )
@@ -143,4 +143,4 @@ DEPENDENCIES
143
143
therubyracer (~> 0.12.1 )
144
144
145
145
BUNDLED WITH
146
- 1.15.1
146
+ 1.17.3
You can’t perform that action at this time.
0 commit comments