@@ -8,7 +8,7 @@ This action installs 'cpm' as root so you can then use it in your workflow.
8
8
9
9
``` yaml
10
10
- name : install cpm and multiple modules
11
- uses : perl-actions/install-with-cpm@v1.2
11
+ uses : perl-actions/install-with-cpm@v1.3
12
12
with :
13
13
install : |
14
14
Simple::Accessor
54
54
steps :
55
55
- uses : actions/checkout@v2
56
56
- name : uses install-with-cpm
57
- uses : perl-actions/install-with-cpm@v1.2
57
+ uses : perl-actions/install-with-cpm@v1.3
58
58
with :
59
59
cpanfile : " cpanfile"
60
60
sudo : false
@@ -117,7 +117,7 @@ You can then use cpm yourself in order commands.
117
117
118
118
` ` ` yaml
119
119
- name: install cpm
120
- uses: perl-actions/install-with-cpm@v1.2
120
+ uses: perl-actions/install-with-cpm@v1.3
121
121
# then you can use it
122
122
- run: "sudo cpm install -g Simple::Accessor"
123
123
` ` `
@@ -129,7 +129,7 @@ You can then use cpm yourself in order commands.
129
129
130
130
` ` ` yaml
131
131
- name: install cpm
132
- uses: perl-actions/install-with-cpm@v1.2
132
+ uses: perl-actions/install-with-cpm@v1.3
133
133
with:
134
134
version: "0.990"
135
135
` ` `
@@ -138,7 +138,7 @@ You can then use cpm yourself in order commands.
138
138
139
139
` ` ` yaml
140
140
- name: install cpm and one module
141
- uses: perl-actions/install-with-cpm@v1.2
141
+ uses: perl-actions/install-with-cpm@v1.3
142
142
with:
143
143
install: "Simple::Accessor"
144
144
` ` `
@@ -149,7 +149,7 @@ List modules seperated by a newline character `\n`
149
149
150
150
` ` ` yaml
151
151
- name: install cpm and multiple modules
152
- uses: perl-actions/install-with-cpm@v1.2
152
+ uses: perl-actions/install-with-cpm@v1.3
153
153
with:
154
154
install: |
155
155
Simple::Accessor
@@ -160,7 +160,7 @@ List modules seperated by a newline character `\n`
160
160
161
161
` ` ` yaml
162
162
- name: install cpm and files from cpanfile
163
- uses: perl-actions/install-with-cpm@v1.2
163
+ uses: perl-actions/install-with-cpm@v1.3
164
164
with:
165
165
cpanfile: "your-cpanfile"
166
166
` ` `
@@ -171,7 +171,7 @@ Install modules with tests.
171
171
172
172
` ` ` yaml
173
173
- name: install cpm and files from cpanfile
174
- uses: perl-actions/install-with-cpm@v1.2
174
+ uses: perl-actions/install-with-cpm@v1.3
175
175
with:
176
176
install: "Simple::Accessor"
177
177
tests: true
@@ -183,7 +183,7 @@ Disable the `-g` flag.
183
183
184
184
` ` ` yaml
185
185
- name: install cpm and files from cpanfile
186
- uses: perl-actions/install-with-cpm@v1.2
186
+ uses: perl-actions/install-with-cpm@v1.3
187
187
with:
188
188
install: "Simple::Accessor"
189
189
global: false
@@ -194,7 +194,7 @@ Disable the `-g` flag.
194
194
195
195
` ` ` yaml
196
196
- name: "install cpm + cpanfile with args"
197
- uses: perl-actions/install-with-cpm@v1.2
197
+ uses: perl-actions/install-with-cpm@v1.3
198
198
with:
199
199
cpanfile: "your-cpanfile"
200
200
args: "--with-recommends --with-suggests"
@@ -221,7 +221,7 @@ Here is a sample job using cpm to install modules on windows.
221
221
- uses: actions/checkout@v2
222
222
- name: "install-with-cpm"
223
223
224
- uses: perl-actions/install-with-cpm@v1.2
224
+ uses: perl-actions/install-with-cpm@v1.3
225
225
with:
226
226
install: |
227
227
abbreviation
0 commit comments