Will add Mac arch to release file names (#905)

This commit is contained in:
Raivis Dejus 2024-09-14 21:45:43 +03:00 committed by GitHub
commit 64442600bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -276,6 +276,12 @@ jobs:
with:
name: Buzz-${{ runner.os }}-${{ runner.arch }}
- name: Rename .dmg files
run: |
for file in Buzz*.dmg; do
mv "$file" "${file%.dmg}-${{ runner.arch }}.dmg"
done
- name: Install Poetry Action
uses: snok/install-poetry@v1.3.1
with: