Skip to content

Commit

Permalink
Merge branch 'develop' into make-pp-improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
gugod authored Jun 2, 2024
2 parents 8a3e6b6 + 92b5e08 commit 2d519e3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: cpanm --quiet --notest App::ModuleBuildTiny
- run: mbtiny dist
- run: echo ./App-perlbrew-*.tar.gz
- run: mbtiny distdir
- run: echo ./App-perlbrew-*
- uses: actions/upload-artifact@v4
with:
name: App-perlbrew-tarball
path: ./App-perlbrew-*.tar.gz
name: App-perlbrew-distdir
path: ./App-perlbrew-*
retention-days: 5

cpanm-dist:
Expand All @@ -31,9 +31,9 @@ jobs:
perl-version: ${{ matrix.version }}
- uses: actions/download-artifact@v4
with:
name: App-perlbrew-tarball
- run: echo ./App-perlbrew-*.tar.gz
- run: cpanm --verbose ./App-perlbrew-*.tar.gz
name: App-perlbrew-distdir
- run: echo ./App-perlbrew-*
- run: cpanm --verbose ./App-perlbrew-*

cpanm-dist-in-container:
needs: mbtiny-dist
Expand All @@ -47,6 +47,6 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: App-perlbrew-tarball
- run: echo ./App-perlbrew-*.tar.gz
- run: cpanm --verbose ./App-perlbrew-*.tar.gz
name: App-perlbrew-distdir
- run: echo ./App-perlbrew-*
- run: cpanm --verbose ./App-perlbrew-*

0 comments on commit 2d519e3

Please sign in to comment.