From a339e3c774e3e84eec1b970a17fcfd021848c329 Mon Sep 17 00:00:00 2001 From: Alex Archambault Date: Tue, 10 Dec 2024 14:28:29 +0100 Subject: [PATCH] Try not to change committed test data perms upon checkout --- .github/workflows/publish-artifacts.yml | 6 +++--- .github/workflows/run-mill-action.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish-artifacts.yml b/.github/workflows/publish-artifacts.yml index 9f5fd986380..5d6348c192a 100644 --- a/.github/workflows/publish-artifacts.yml +++ b/.github/workflows/publish-artifacts.yml @@ -41,7 +41,7 @@ jobs: - uses: actions/upload-artifact@v4.4.3 with: - path: . + path: out include-hidden-files: true name: publish-artifacts @@ -67,7 +67,7 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - path: . + path: out name: publish-artifacts - run: ls -la . @@ -98,7 +98,7 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - path: . + path: out name: publish-artifacts - run: ls -la . diff --git a/.github/workflows/run-mill-action.yml b/.github/workflows/run-mill-action.yml index f77fd86ad93..9e0b8992d3c 100644 --- a/.github/workflows/run-mill-action.yml +++ b/.github/workflows/run-mill-action.yml @@ -46,7 +46,7 @@ jobs: - uses: actions/download-artifact@v4 if: ${{ !inputs.populate_cache }} with: - path: . + path: out name: ${{ inputs.os }}-artifact # Need to fix cached artifact file permissions because github actions screws it up @@ -96,7 +96,7 @@ jobs: - uses: actions/upload-artifact@v4.4.3 with: - path: . + path: out name: ${{ inputs.os }}-artifact include-hidden-files: true if: ${{ inputs.populate_cache }}