Skip to content

Commit

Permalink
fix renaming releases
Browse files Browse the repository at this point in the history
  • Loading branch information
waleko committed May 27, 2022
1 parent 4464fce commit 4ce16ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/bundle-client-craft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ jobs:
uses: actions/download-artifact@v3
- name: Rename files
run: |
find -name '*.exe' -exec mv '{}' "./cavoke-${GITHUB_REF_NAME}-windows.exe" ';'
find -name '*.dmg' -exec mv '{}' "./cavoke-${GITHUB_REF_NAME}-macos.dmg" ';'
find -name '*.AppImage' -exec mv '{}' "./cavoke-${GITHUB_REF_NAME}-linux.AppImage" ';'
find -name '*.exe' -exec mv '{}' './cavoke-${{ github.ref_name }}-windows.exe' ';'
find -name '*.dmg' -exec mv '{}' './cavoke-${{ github.ref_name }}-macos.dmg' ';'
find -name '*.AppImage' -exec mv '{}' './cavoke-${{ github.ref_name }}-linux.AppImage' ';'
- name: GitHub Release
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 4ce16ac

Please sign in to comment.