We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b902f27 commit 63365c5Copy full SHA for 63365c5
1 file changed
.github/actions/smoke-csf/action.yml
@@ -5,10 +5,12 @@ runs:
5
using: "composite"
6
steps:
7
- uses: actions/checkout@v4
8
-
+
9
- name: Install smoke runner
10
shell: bash
11
- run: install "${{ github.action_path }}/smoke" /usr/local/bin/smoke
+ run: |
12
+ SMOKE_EXE=$(readlink -f "${{ github.action_path }}/smoke")
13
+ install "$SMOKE_EXE" /usr/local/bin/smoke
14
15
- name: "csf -v (version)"
16
0 commit comments