From 1a588eabf9eb78be33841716c57847fe96591a9a Mon Sep 17 00:00:00 2001 From: Xargon Wan Date: Tue, 3 May 2022 14:56:35 +0900 Subject: [PATCH] Migrated cache to artifact - cache compression fix1 --- .github/workflows/cooker.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cooker.yml b/.github/workflows/cooker.yml index 89c68e6e..d5b4912c 100644 --- a/.github/workflows/cooker.yml +++ b/.github/workflows/cooker.yml @@ -80,7 +80,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }} - retrodeck-cooker.zip + path: retrodeck-cooker.zip # - name: Continuing with previous worklow cache @@ -114,7 +114,7 @@ jobs: uses: actions/download-artifact@v2 with: name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }} - retrodeck-cooker.zip + path: retrodeck-cooker.zip - name: Exctracting cache run: unzip retrodeck-cooker.zip -d /home/runner/work/RetroDECK @@ -143,7 +143,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }} - retrodeck-cooker.zip + path: retrodeck-cooker.zip Job4_-_Building_part_2: runs-on: ubuntu-latest @@ -155,7 +155,7 @@ jobs: uses: actions/download-artifact@v2 with: name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }} - retrodeck-cooker.zip + path: retrodeck-cooker.zip - name: Initializing enviornment #if: steps.cache-cooker.outputs.cache-hit != 'true' @@ -181,7 +181,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }} - retrodeck-cooker.zip + path: retrodeck-cooker.zip Job5_-_Finishing_build: runs-on: ubuntu-latest @@ -200,7 +200,7 @@ jobs: uses: actions/download-artifact@v2 with: name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }} - retrodeck-cooker.zip + path: retrodeck-cooker.zip - name: Exctracting cache run: unzip retrodeck-cooker.zip -d /home/runner/work/RetroDECK @@ -248,7 +248,7 @@ jobs: uses: actions/download-artifact@v2 with: name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }} - retrodeck-cooker.zip + path: retrodeck-cooker.zip - name: Exctracting cache run: unzip retrodeck-cooker.zip -d /home/runner/work/RetroDECK @@ -277,7 +277,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }} - retrodeck-cooker.zip + path: retrodeck-cooker.zip Job7_-_Publishing_flatpak: runs-on: ubuntu-latest @@ -295,7 +295,7 @@ jobs: uses: actions/download-artifact@v2 with: name: ${{ needs.Job1_-_Prepearing_enviornment.outputs.buildID }} - retrodeck-cooker.zip + path: retrodeck-cooker.zip - name: Exctracting cache run: unzip retrodeck-cooker.zip -d /home/runner/work/RetroDECK @@ -335,5 +335,5 @@ jobs: uses: actions/upload-artifact@v3 with: name: global-cache - retrodeck-cooker.zip + path: retrodeck-cooker.zip continue-on-error: true \ No newline at end of file