Skip to content

Commit 699c668

Browse files
Rename artifacts
1 parent c4936c7 commit 699c668

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
# Sequence of patterns matched against refs/tags
55
tags:
6-
- '*' # Push events to matching v*, i.e. v1.0, v20.15.10
6+
- '*' # Push events to matching any tags, 0.1.0
77

88
jobs:
99
build:
@@ -44,15 +44,18 @@ jobs:
4444
- uses: actions/download-artifact@v2
4545
with:
4646
name: aws-auto-inventory-windows-latest
47+
- run: mv aws-auto-inventory-ubuntu-latest aws-auto-inventory-ubuntu
48+
- run: mv aws-auto-inventory-macos-latest aws-auto-inventory-macos
49+
- run: mv aws-auto-inventory-windows-latest.exe aws-auto-inventory-windows.exe
4750
- name: Release
4851
uses: softprops/action-gh-release@v1
4952
if: startsWith(github.ref, 'refs/tags/')
5053
with:
5154
prerelease: true
5255
draft: true
5356
files: |
54-
aws-auto-inventory-ubuntu-latest
55-
aws-auto-inventory-macos-latest
56-
aws-auto-inventory-windows-latest.exe
57+
aws-auto-inventory-ubuntu
58+
aws-auto-inventory-macos
59+
aws-auto-inventory-windows.exe
5760
env:
5861
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)