We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15b023c commit 27017beCopy full SHA for 27017be
.github/workflows/build-release-import-script.yml
@@ -40,8 +40,12 @@ jobs:
40
- name: Upload artifact
41
uses: actions/upload-artifact@v4
42
with:
43
- name: binaries
+ name: binary-${{ matrix.goos }}-${{ matrix.goarch }}
44
path: terraform-provider-astro-import-script_*
45
+ if-no-files-found: warn
46
+ compression-level: 6
47
+ overwrite: false
48
+ include-hidden-files: false
49
50
lint:
51
name: Lint
@@ -67,7 +71,8 @@ jobs:
67
71
- name: Download artifacts
68
72
uses: actions/download-artifact@v4
69
73
70
74
+ pattern: binary-*
75
+ merge-multiple: true # This will merge all matching artifacts into one directory
76
77
- name: Get the version
78
id: get_version
0 commit comments