We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e1ebb3 commit dd88a9cCopy full SHA for dd88a9c
.github/workflows/build.yml
@@ -90,8 +90,8 @@ jobs:
90
- name: Set matrix
91
id: set-matrix
92
run: |
93
- rake ci:rake_task_matrix > matrix.json
94
- echo "entries=$(cat matrix.json)" >> $GITHUB_OUTPUT
+ rake ci:rake_task_matrix
+ echo "entries=$(cat ci_matrix.json)" >> $GITHUB_OUTPUT
95
96
rake-tasks:
97
strategy:
rakelib/ci.rake
@@ -95,7 +95,8 @@ end
namespace :ci do
task :rake_task_matrix do
98
- print JSON.generate(rake_task_matrix.flat_map { |_, entries| entries })
+ content = JSON.generate(rake_task_matrix.flat_map { |_, entries| entries })
99
+ File.write("ci_matrix.json", content)
100
end
101
102
task :pin_build_manifest do
0 commit comments