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 a477f69 commit 803c0e0Copy full SHA for 803c0e0
.github/workflows/test.yml
@@ -20,6 +20,7 @@ jobs:
20
id: set-matrix
21
run: |
22
import json
23
+ import os
24
go = [
25
# Keep the most recent production release at the top
26
'1.19',
@@ -55,7 +56,8 @@ jobs:
55
56
'include': includes
57
}
58
output = json.dumps(matrix, separators=(',', ':'))
- print('::set-output name=matrix::{0}'.format(output))
59
+ with open(os.environ["GITHUB_OUTPUT"], 'a', encoding="utf-8") as f:
60
+ f.write('matrix={0}\n'.format(output))
61
shell: python
62
test:
63
needs: list
0 commit comments