We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba211f5 commit 191b529Copy full SHA for 191b529
2 files changed
README.md
@@ -2,7 +2,7 @@
2
3
[`install.sh`](./install.sh) is delivered when you `curl tea.xyz`.
4
5
-# GitHub Action 0.9.0
+# GitHub Action 0.10.0
6
7
This repository also provides the `tea` GitHub Action.
8
action.js
@@ -7,7 +7,9 @@ const os = require("os")
async function go() {
process.stderr.write("determining latest tea version…\n")
9
10
- const PREFIX = process.env['INPUT_PREFIX'] || `${os.homedir()}/opt`
+ const HOMEDIR = process.env['GITHUB_WORKSPACE'] || os.homedir()
11
+
12
+ const PREFIX = process.env['INPUT_PREFIX'] || `${HOMEDIR}/opt`
13
const TEA_DIR = (() => {
14
let TEA_DIR = process.env['INPUT_SRCROOT']
15
if (!TEA_DIR) return
0 commit comments