Skip to content

Commit 437ec76

Browse files
FedeDPpoiana
authored andcommitted
fix(ci): fixed Falco release debug symbols names.
Signed-off-by: Federico Di Pierro <[email protected]>
1 parent 5664e87 commit 437ec76

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -163,18 +163,18 @@ jobs:
163163
- name: Download debug symbols for Falco x86_64
164164
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
165165
with:
166-
name: falco-${{ inputs.version }}-x86_64.debug
166+
name: falco-${{ github.event.release.tag_name }}-x86_64.debug
167167

168168
- name: Rename x86_64 debug symbols
169-
run: mv falco.debug falco_x86_64.debug
169+
run: mv falco.debug falco-x86_64.debug
170170

171171
- name: Download debug symbols for Falco aarch64
172172
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
173173
with:
174-
name: falco-${{ inputs.version }}-aarch64.debug
174+
name: falco-${{ github.event.release.tag_name }}-aarch64.debug
175175

176176
- name: Rename aarch64 debug symbols
177-
run: mv falco.debug falco_aarch64.debug
177+
run: mv falco.debug falco-aarch64.debug
178178

179179
- name: Release
180180
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15

0 commit comments

Comments
 (0)