Skip to content

Commit 27017be

Browse files
committed
fix binary for script
1 parent 15b023c commit 27017be

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/build-release-import-script.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,12 @@ jobs:
4040
- name: Upload artifact
4141
uses: actions/upload-artifact@v4
4242
with:
43-
name: binaries
43+
name: binary-${{ matrix.goos }}-${{ matrix.goarch }}
4444
path: terraform-provider-astro-import-script_*
45+
if-no-files-found: warn
46+
compression-level: 6
47+
overwrite: false
48+
include-hidden-files: false
4549

4650
lint:
4751
name: Lint
@@ -67,7 +71,8 @@ jobs:
6771
- name: Download artifacts
6872
uses: actions/download-artifact@v4
6973
with:
70-
name: binaries
74+
pattern: binary-*
75+
merge-multiple: true # This will merge all matching artifacts into one directory
7176

7277
- name: Get the version
7378
id: get_version

0 commit comments

Comments
 (0)