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 51614ab commit 0b82b77Copy full SHA for 0b82b77
.github/workflows/get-llvm-revision.py
@@ -1,5 +1,5 @@
1
#!/usr/bin/env python3
2
-import os
+import gha
3
import re
4
import subprocess
5
@@ -9,4 +9,4 @@
9
assert(match is not None), f"Malformed Git output: '{output}'"
10
11
revision = match.group('revision')
12
-print(f"::set-output name=revision::{revision}")
+gha.set_output('revision', revision)
0 commit comments