We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ae38f3 commit d13be87Copy full SHA for d13be87
.github/workflows/release-binaries.yml
@@ -158,7 +158,12 @@ jobs:
158
sparse-checkout-cone-mode: false
159
# Check out outside of working directory so the source checkout doesn't
160
# remove it.
161
- path: ../workflows
+ path: workflows
162
+
163
+ # Move workflows so they don't get overwritten by checkout. The checkout job
164
+ # requires checking out to github.workspace.
165
+ - shell: bash
166
+ run: mv workflows ../workflows-main
167
168
- name: Checkout LLVM
169
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
@@ -168,7 +173,7 @@ jobs:
173
- name: Copy main workflows
174
shell: bash
170
175
run: |
171
- mv ../workflows workflows-main
176
+ mv ../workflows-main .
172
177
178
- name: Setup Stage
179
id: setup-stage
0 commit comments