We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aefdfa5 commit 7d76795Copy full SHA for 7d76795
README.md
@@ -2,7 +2,7 @@
2
3
[`install.sh`](./install.sh) is delivered when you `curl tea.xyz`.
4
5
-# GitHub Action 0.6.12
+# GitHub Action 0.6.13
6
7
This repository also provides the `tea` GitHub Action.
8
action.js
@@ -44,7 +44,7 @@ async function go() {
44
const chunks = []
45
rsp.on("data", x => chunks.push(x))
46
rsp.on("end", () => {
47
- resolve(chunks.join("").split("\n").at(-1))
+ resolve(chunks.join("").trim().split("\n").at(-1))
48
})
49
}).on('error', reject)
50
0 commit comments