Skip to content

Commit a09ffba

Browse files
committed
fix paths for main action
1 parent 3c2733e commit a09ffba

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/actions/workflow-run-job-linux/action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ runs:
4040
- name: Add NVCC problem matcher
4141
shell: bash --noprofile --norc -euo pipefail {0}
4242
run: |
43-
echo "::add-matcher::${{github.event.repository.name}}/.github/problem-matchers/problem-matcher.json"
43+
echo "::add-matcher::${{github.workspace}}/.github/problem-matchers/problem-matcher.json"
4444
- name: Get AWS credentials for sccache bucket
4545
uses: aws-actions/configure-aws-credentials@v4
4646
with:
@@ -51,7 +51,7 @@ runs:
5151
uses: actions/download-artifact@v4
5252
with:
5353
name: wheelhouse-${{ inputs.producer_id || inputs.id }}
54-
path: ${{github.event.repository.name}}/wheelhouse/
54+
path: wheelhouse/
5555
continue-on-error: true
5656
- name: Run command # Do not change this step's name, it is checked in parse-job-times.py
5757
shell: bash --noprofile --norc -euo pipefail {0}
@@ -110,7 +110,7 @@ runs:
110110
chmod +x ci.sh
111111
112112
# The devcontainer will mount this path to the home directory:
113-
readonly aws_dir="${{github.event.repository.name}}/.aws"
113+
readonly aws_dir="${{github.workspace}}/.aws"
114114
mkdir "${aws_dir}";
115115
116116
cat <<EOF > "${aws_dir}/config"
@@ -143,7 +143,7 @@ runs:
143143
144144
# Launch this container using the host's docker daemon
145145
set -x
146-
${{github.event.repository.name}}/.devcontainer/launch.sh \
146+
${{github.workspace}}/.devcontainer/launch.sh \
147147
--docker \
148148
--cuda ${{inputs.cuda}} \
149149
--host ${{inputs.host}} \
@@ -198,5 +198,5 @@ runs:
198198
uses: actions/upload-artifact@v4
199199
with:
200200
name: wheelhouse-${{inputs.id}}
201-
path: ${{github.event.repository.name}}/wheelhouse/
201+
path: wheelhouse/
202202
compression-level: 0

0 commit comments

Comments
 (0)