Skip to content

Commit 2291458

Browse files
committed
rename to install-with-cpm
1 parent ae24c8c commit 2291458

File tree

61 files changed

+87
-87
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+87
-87
lines changed

.github/workflows/check.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
# otherwise it can be delayed...
88
# we cannot use
99
#
10-
# perl-actions/install-cpm@master
11-
# perl-actions/install-cpm@${{ github.sha }}
10+
# perl-actions/install-with-cpm@master
11+
# perl-actions/install-with-cpm@${{ github.sha }}
1212
#
1313
# https://i.8713187.xyzmunity/t5/GitHub-Actions/Usage-of-expressions-and-contexts-in-uses-clause/m-p/39502#M3835
1414

@@ -17,7 +17,7 @@ jobs:
1717
name: "install cpm"
1818
steps:
1919
- uses: actions/checkout@v2
20-
- name: uses install-cpm
20+
- name: uses install-with-cpm
2121
uses: ./
2222
- name: which cpm
2323
run: |
@@ -29,7 +29,7 @@ jobs:
2929
name: "install cpm 0.990"
3030
steps:
3131
- uses: actions/checkout@v2
32-
- name: uses install-cpm
32+
- name: uses install-with-cpm
3333
uses: ./
3434
with:
3535
version: "0.990"
@@ -44,7 +44,7 @@ jobs:
4444
name: "cpm and a module"
4545
steps:
4646
- uses: actions/checkout@v2
47-
- name: uses install-cpm
47+
- name: uses install-with-cpm
4848
uses: ./
4949
with:
5050
install: "Simple::Accessor"
@@ -56,7 +56,7 @@ jobs:
5656
name: "cpm & modules"
5757
steps:
5858
- uses: actions/checkout@v2
59-
- name: uses install-cpm
59+
- name: uses install-with-cpm
6060
uses: ./
6161
with:
6262
install: |
@@ -73,7 +73,7 @@ jobs:
7373
- name: "Create a cpanfile"
7474
run: |
7575
echo "requires 'A1z::Html';" > cpanfile.test
76-
- name: uses install-cpm
76+
- name: uses install-with-cpm
7777
uses: ./
7878
with:
7979
cpanfile: "cpanfile.test"
@@ -86,7 +86,7 @@ jobs:
8686
- name: "Create a cpanfile"
8787
run: |
8888
echo "requires 'A1z::Html';" > cpanfile.test
89-
- name: uses install-cpm
89+
- name: uses install-with-cpm
9090
uses: ./
9191
with:
9292
cpanfile: "cpanfile.test"
@@ -101,7 +101,7 @@ jobs:
101101
name: "install with tests"
102102
steps:
103103
- uses: actions/checkout@v2
104-
- name: uses install-cpm
104+
- name: uses install-with-cpm
105105
uses: ./
106106
with:
107107
install: "Simple::Accessor"
@@ -126,7 +126,7 @@ jobs:
126126

127127
steps:
128128
- uses: actions/checkout@v2
129-
- name: uses install-cpm
129+
- name: uses install-with-cpm
130130
uses: ./
131131
with:
132132
install: "Simple::Accessor"
@@ -143,7 +143,7 @@ jobs:
143143
- name: "Create a cpanfile"
144144
run: |
145145
echo "requires 'A1z::Html';" > cpanfile.test
146-
- name: uses install-cpm
146+
- name: uses install-with-cpm
147147
uses: ./
148148
with:
149149
cpanfile: "cpanfile.test"

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
[![Actions Status](https://github.com/perl-actions/install-cpm/workflows/check/badge.svg)](https://github.com/perl-actions/install-cpm/actions)
1+
[![Actions Status](https://github.com/perl-actions/install-with-cpm/workflows/check/badge.svg)](https://github.com/perl-actions/install-with-cpm/actions)
22

3-
# install-cpm
3+
# install-with-cpm
44

55
GitHub action to install App::cpm
66

77
This action installs 'cpm' as root so you can then use it in your workflow.
88

99
```yaml
1010
- name: install cpm and multiple modules
11-
uses: perl-actions/[email protected]
11+
uses: perl-actions/install-with-[email protected]
1212
with:
1313
install: |
1414
Simple::Accessor
@@ -27,7 +27,7 @@ This action installs 'cpm' as root so you can then use it in your workflow.
2727

2828
## Using it in a GitHub workflow
2929

30-
Here is a sample integration using install-cpm action
30+
Here is a sample integration using install-with-cpm action
3131
to test your Perl Module using multiple Perl versions.
3232

3333
```yaml
@@ -52,8 +52,8 @@ jobs:
5252

5353
steps:
5454
- uses: actions/checkout@v2
55-
- name: uses install-cpm
56-
uses: perl-actions/[email protected]
55+
- name: uses install-with-cpm
56+
uses: perl-actions/install-with-[email protected]
5757
with:
5858
cpanfile: "cpanfile"
5959
sudo: false
@@ -116,7 +116,7 @@ You can then use cpm yourself in order commands.
116116

117117
```yaml
118118
- name: install cpm
119-
uses: perl-actions/[email protected]
119+
uses: perl-actions/install-with-[email protected]
120120
# then you can use it
121121
- run: "sudo cpm install -g Simple::Accessor"
122122
```
@@ -128,7 +128,7 @@ You can then use cpm yourself in order commands.
128128

129129
```yaml
130130
- name: install cpm
131-
uses: perl-actions/[email protected]
131+
uses: perl-actions/install-with-[email protected]
132132
with:
133133
version: "0.990"
134134
```
@@ -137,7 +137,7 @@ You can then use cpm yourself in order commands.
137137

138138
```yaml
139139
- name: install cpm and one module
140-
uses: perl-actions/[email protected]
140+
uses: perl-actions/install-with-[email protected]
141141
with:
142142
install: "Simple::Accessor"
143143
```
@@ -148,7 +148,7 @@ List modules seperated by a newline character `\n`
148148

149149
```yaml
150150
- name: install cpm and multiple modules
151-
uses: perl-actions/[email protected]
151+
uses: perl-actions/install-with-[email protected]
152152
with:
153153
install: |
154154
Simple::Accessor
@@ -159,7 +159,7 @@ List modules seperated by a newline character `\n`
159159

160160
```yaml
161161
- name: install cpm and files from cpanfile
162-
uses: perl-actions/[email protected]
162+
uses: perl-actions/install-with-[email protected]
163163
with:
164164
cpanfile: "your-cpanfile"
165165
```
@@ -170,7 +170,7 @@ Install modules with tests.
170170

171171
```yaml
172172
- name: install cpm and files from cpanfile
173-
uses: perl-actions/[email protected]
173+
uses: perl-actions/install-with-[email protected]
174174
with:
175175
install: "Simple::Accessor"
176176
tests: true
@@ -182,7 +182,7 @@ Disable the `-g` flag.
182182

183183
```yaml
184184
- name: install cpm and files from cpanfile
185-
uses: perl-actions/[email protected]
185+
uses: perl-actions/install-with-[email protected]
186186
with:
187187
install: "Simple::Accessor"
188188
global: false
@@ -193,7 +193,7 @@ Disable the `-g` flag.
193193

194194
```yaml
195195
- name: "install cpm + cpanfile with args"
196-
uses: perl-actions/[email protected]
196+
uses: perl-actions/install-with-[email protected]
197197
with:
198198
cpanfile: "your-cpanfile"
199199
args: "--with-recommends --with-suggests"

node_modules/@actions/core/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/exec/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/github/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/http-client/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/io/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/tool-cache/node_modules/semver/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/tool-cache/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/auth-token/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/endpoint/node_modules/universal-user-agent/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/endpoint/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/graphql/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/plugin-paginate-rest/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/plugin-request-log/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/plugin-rest-endpoint-methods/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/request-error/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/request/node_modules/universal-user-agent/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/request/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/rest/node_modules/@octokit/request-error/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/rest/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@octokit/types/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@types/node/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/atob-lite/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)