Skip to content

Commit 969da4d

Browse files
committed
Add cpan publish gh action
1 parent ad9848a commit 969da4d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/publish-cpan.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Publish to CPAN
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
publish-ui:
9+
name: Publish to CPAN
10+
runs-on: ubuntu-latest
11+
environment: Release
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: cucumber/[email protected]
15+
with:
16+
cpan-user: ${{ secrets.CPAN_USER }}
17+
cpan-password: ${{ secrets.CPAN_PASSWORD }}
18+
working-directory: "perl"

0 commit comments

Comments
 (0)