From aa7dd9a0f24779195a3936da2c5aebe11662c259 Mon Sep 17 00:00:00 2001 From: Eivind Grimstad Date: Wed, 15 Apr 2026 12:36:21 +0200 Subject: [PATCH] fix: Fix typo in artifact download causing error --- .github/workflows/ci.yml | 8 +++++++- .github/workflows/validate.yml | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d4f16c..a8b712b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -81,4 +81,10 @@ jobs: artifact: "specs" path: "openapi-good.json" upload_to_bucket: false - fail_threshold: warn \ No newline at end of file + fail_threshold: warn + test-validate-artifact-with-artifact_contents_glob-ok: + needs: upload-artifact-all + uses: ./.github/workflows/validate.yml + with: + artifact: "specs" + path: "openapi-good.json" \ No newline at end of file diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index b84d102..9ab2ff6 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -86,7 +86,7 @@ jobs: if: ${{ inputs.artifact != '' }} with: name: ${{ inputs.artifact }} - path: /tmp/artifact + path: /tmp/artifacts - uses: actions/setup-node@v6 with: node-version: 24