Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

Commit

Permalink
fix(ci): remove "." from cpanm args (duplicated by install property)
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiSchwarz-cnic committed Jun 10, 2022
1 parent 3cc126f commit 322f9a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ jobs:
with:
cpanfile: "cpanfile"
sudo: false
args: "--quiet --reinstall --notest"
args: "--quiet --notest"
- name: install perl-sdk sources as perl dependency
uses: perl-actions/install-with-cpanm@v1
with:
install: "."
sudo: false
args: "-v --installdeps --reinstall --notest ."
args: "-v --installdeps --notest"
- run: |
./scripts/coverage.sh
./scripts/perltidy.sh
Expand Down Expand Up @@ -79,13 +79,13 @@ jobs:
with:
cpanfile: "cpanfile"
sudo: true
args: "-v --quiet --reinstall --notest"
args: "-v --quiet --notest"
- name: install perl-sdk sources as perl dependency
uses: perl-actions/install-with-cpanm@v1
with:
install: "."
sudo: true
args: "-v --installdeps --reinstall --notest ."
args: "-v --installdeps --notest"
- name: Install dependencies
run: npm ci
- name: Release
Expand Down

0 comments on commit 322f9a3

Please sign in to comment.