Skip to content

Commit

Permalink
feat(ci): workflow as separate yml files
Browse files Browse the repository at this point in the history
debug

n/a
  • Loading branch information
jdre-c8y committed Jun 25, 2024
1 parent f8ec012 commit 17b93af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cockpit-e2e-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Print Output Debug
run: echo "non_deprecated_shell_versions=${{ fromJSON(needs.collect-shell-versions.outputs.non_deprecated_shell_versions) }}"
run: echo "non_deprecated_shell_versions=${{ needs.collect-shell-versions.outputs.non_deprecated_shell_versions }}"

test-plugins-against-cockpit:
# needs: [collect-shell-versions, build-plugins]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-plugins-against-cockpit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
version_data: ${{ fromJSON(inputs.non_deprecated_shell_versions) }}
version_data: ${{ inputs.non_deprecated_shell_versions }}
env:
JSON: ${{ toJson(matrix.version_data) }}
VERSION: ${{ matrix.version_data.version }}
Expand Down

0 comments on commit 17b93af

Please sign in to comment.