From 91852d48c67d947310601743acb2b4fc7e93f75f Mon Sep 17 00:00:00 2001 From: Tom - Henry Coursow Date: Sun, 25 May 2025 22:51:25 +0200 Subject: [PATCH] .gitea/workflows/build.yml aktualisiert --- .gitea/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 5e5e1f2..d980b9e 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -64,7 +64,7 @@ jobs: # Finds the desired Javascript file and prints a string 'script-file=' which then gets saved in the $GITHUB_OUTPUT file run: find dist/assets/*.js -type f -execdir echo 'script-file={}' >> $GITHUB_OUTPUT ';' - name: Package Artifacts - uses: https://github.com/thedoctor0/zip-release@0.7.1 + uses: thedoctor0/zip-release@0.7.1 with: type: 'tar' path: dist @@ -81,20 +81,20 @@ jobs: steps: - name: Checkout Code uses: actions/checkout@v3 - - uses: KEINOS/gh-action-hash-for-cache@v2.0.0-alpha + - uses: seepine/hash-files@v1 id: get-cache-hash with: - path: | - package-lock.json + patterns: |- + package-lock.json - name: Show key future key value run: echo "deps-node-modules-${{ steps.get-cache-hash.outputs.hash }}" - name: Setup Chache - uses: https://github.com/actions/cache@v3 + uses: actions/cache@v3 with: path: ~/.npm key: deps-node-modules-${{ steps.get-cache-hash.outputs.hash }} - name: Access Artifacts - uses: https://github.com/actions/download-artifact@v3 + uses: actions/download-artifact@v3 with: name: dist.tar.gz - name: Output JS Filename from Build Job