Skip to content

Commit 4ae38f3

Browse files
committed
Fix paths again
1 parent 16a291f commit 4ae38f3

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/release-binaries.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -160,15 +160,20 @@ jobs:
160160
# remove it.
161161
path: ../workflows
162162

163-
- name: Setup Stage
164-
id: setup-stage
165-
uses: "${{ github.workspace }}/../workflows/.github/workflows/release-binaries-setup-stage"
166-
167163
- name: Checkout LLVM
168164
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
169165
with:
170166
ref: ${{ needs.prepare.outputs.ref }}
171167

168+
- name: Copy main workflows
169+
shell: bash
170+
run: |
171+
mv ../workflows workflows-main
172+
173+
- name: Setup Stage
174+
id: setup-stage
175+
uses: ./workflows-main/.github/workflows/release-binaries-setup-stage
176+
172177
- name: Setup sccache
173178
uses: hendrikmuhs/ccache-action@ca3acd2731eef11f1572ccb126356c2f9298d35e # v1.2.9
174179
with:
@@ -196,7 +201,7 @@ jobs:
196201
ls -ltr ${{ steps.setup-stage.outputs.build-prefix }}/build
197202
198203
- name: Save Stage
199-
uses: "${{ github.workspace }}/../workflows/.github/workflows/release-binaries-save-stage"
204+
uses: ./workflows-main/.github/workflows/release-binaries-save-stage
200205
with:
201206
build-prefix: ${{ steps.setup-stage.outputs.build-prefix }}
202207

0 commit comments

Comments
 (0)