Skip to content

Commit 00bac01

Browse files
committed
Fix the matrix references
1 parent 26bea43 commit 00bac01

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/pull_request.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,22 +67,22 @@ jobs:
6767
retention-days: 1
6868

6969
releasetest:
70-
name: Test Release / ${{matrix.shell-pkg}}
70+
name: Test Release / ${{matrix.shell.pkg}}
7171
needs: releasebuildcheck
7272
runs-on: ubuntu-latest
7373
strategy:
7474
fail-fast: false
7575
matrix:
7676
shell: [
77-
{"shell-pkg": "bash", "shell-bin": "/bin/bash"},
78-
{"shell-pkg": "zsh", "shell-bin": "/bin/zsh"},
79-
{"shell-pkg": "fish", "shell-bin": "/bin/fish"}
77+
{"pkg": "bash", "bin": "/bin/bash"},
78+
{"pkg": "zsh", "bin": "/bin/zsh"},
79+
{"pkg": "fish", "bin": "/bin/fish"}
8080
]
8181
container:
8282
image: "ubuntu:24.04"
8383
steps:
8484
- name: Prepare System
85-
run: apt-get update && DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get -y install ca-certificates gpg tzdata ${{matrix.shell-pkg}} && chsh -s ${{matrix.shell-bin}}
85+
run: apt-get update && DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get -y install ca-certificates gpg tzdata ${{matrix.shell.pkg}} && chsh -s ${{matrix.shell.bin}}
8686
- name: Download Release
8787
uses: actions/download-artifact@v4
8888
with:

0 commit comments

Comments
 (0)