Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
kwk committed Feb 5, 2024
1 parent 4fb1efe commit 48b4e94
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
container:
image: "fedora:rawhide"
outputs:
matrix: ${{ steps.get-os-versions-step.outputs.os_versions }}
os-versions: ${{ steps.get-os-versions-step.outputs.os_versions }}
steps:
- uses: actions/checkout@v4

Expand All @@ -45,14 +45,14 @@ jobs:
source scripts/functions.sh
# Get OS versions comma separated with properly quoted rawhide
echo os_versions="{"version":[`get_os_versions | paste -sd "," - | sed 's/rawhide/\"rawhide\"/'`]}" >> $GITHUB_OUTPUT
echo "os_versions=[`get_os_versions | paste -sd "," - | sed 's/rawhide/\"rawhide\"/'`]" >> $GITHUB_OUTPUT
run-tmt:
needs: get-os-versions-job
strategy:
fail-fast: false
matrix:
os: [fedora]
version: ${{ fromJSON(needs.get-os-versions-job.outputs.os_versions) }}
version: ${{ fromJSON(needs.get-os-versions-job.outputs.os-versions) }}
strategy: [standalone, big-merge, bootstrap]
include:
- strategy: standalone
Expand Down

0 comments on commit 48b4e94

Please sign in to comment.