Skip to content

Commit

Permalink
GitHub Action: rebuild for self-version-detecting workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rjbs committed Jun 8, 2024
1 parent 589fd8d commit 6e5ceba
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/multiperl-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ on:
jobs:
build-tarball:
runs-on: ubuntu-latest
outputs:
perl-versions: ${{ steps.build-archive.outputs.perl-versions }}
steps:
- name: Build archive
id: build-archive
uses: rjbs/dzil-build@v0

multiperl-test:
Expand All @@ -19,7 +22,7 @@ jobs:
strategy:
fail-fast: false
matrix:
perl-version: [ "devel", "5.38", "5.36", "5.34", "5.32", "5.30", "5.28", "5.26", "5.24", "5.22", "5.20" ]
perl-version: ${{ fromJson(needs.build-tarball.outputs.perl-versions) }}

container:
image: perldocker/perl-tester:${{ matrix.perl-version }}
Expand Down

0 comments on commit 6e5ceba

Please sign in to comment.