From 5bbfbc3dbc8d692d03e9197999fe659ec525eee9 Mon Sep 17 00:00:00 2001 From: Dan Engelbrecht Date: Sun, 3 Mar 2024 12:18:32 +0100 Subject: [PATCH] use wildcard name for download action --- .github/workflows/create-release.yml | 3 +++ .github/workflows/master-build.yml | 3 +++ .github/workflows/pr-build.yml | 3 +++ 3 files changed, 9 insertions(+) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 365f482a..1b47ee99 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -38,6 +38,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: + name: linux-x64-* path: build/artifacts - name: build dist run: | @@ -81,6 +82,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: + name: darwin-x64-* path: build/artifacts - name: build dist run: | @@ -122,6 +124,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: + name: win32-* path: build/artifacts - name: build dist run: | diff --git a/.github/workflows/master-build.yml b/.github/workflows/master-build.yml index f4c37f0b..a1df2397 100644 --- a/.github/workflows/master-build.yml +++ b/.github/workflows/master-build.yml @@ -53,6 +53,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: + name: linux-* path: build/artifacts - name: build dist run: | @@ -115,6 +116,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: + name: darwin-* path: build/artifacts - name: build dist run: | @@ -173,6 +175,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: + name: win32-* path: build/artifacts - name: build dist run: | diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index 73ff8473..3f33285b 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -62,6 +62,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: + name: linux-* path: build/artifacts - name: build dist run: | @@ -125,6 +126,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: + name: darwin-* path: build/artifacts - name: build dist run: | @@ -183,6 +185,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: + name: win32-* path: build/artifacts - name: build dist run: |