We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db87322 commit 8214cecCopy full SHA for 8214cec
.github/workflows/ci.yaml
@@ -257,9 +257,14 @@ jobs:
257
echo "K0S_VERSION=\"$K0S_VERSION\""
258
echo "k0s_version=$K0S_VERSION" >> "$GITHUB_OUTPUT"
259
260
+ # this is required as cloudposse/github-action-matrix-outputs-write doesn't allow configuring the build directory
261
+ # and it fails with this error if perms are not set correctly: Error: EISDIR: illegal operation on a directory, open './build'
262
+ - name: Clean up build directory
263
+ run: |
264
+ rm -rf build
265
+
266
- name: Write matrix outputs
267
uses: cloudposse/github-action-matrix-outputs-write@v1
- id: write-matrix-outputs
268
with:
269
matrix-step-name: ${{ github.job }}
270
matrix-key: ${{ matrix.k0s_version }}-${{ matrix.type }}
0 commit comments