We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dd7cb2 commit 8bde57cCopy full SHA for 8bde57c
action.yaml
@@ -15,6 +15,10 @@ inputs:
15
description: 'compiler version (this may depends on the compiler provider)'
16
type: string
17
required: true
18
+ workspace:
19
+ description: 'current workspace path value (see GH checkout issue #785'
20
+ type: string
21
+ required: true
22
23
runs:
24
using: 'composite'
@@ -36,5 +40,5 @@ runs:
36
40
- name: Link toolchain dir to predictable path in container
37
41
run: |
38
42
source=$(dirname $TOOLCHAIN_PATH)
39
- ln -s $source ${{ github.workspace}}/${{ inputs.triple }}
43
+ ln -s $source ${{ inputs.workspace }}/${{ inputs.triple }}
44
shell: bash
0 commit comments