Skip to content

Commit

Permalink
Add a -cmake suffix to archive names
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Mar 5, 2024
1 parent 03c2820 commit 78fdfc7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:
- name: Create archives
run: |
tar -czf ${{ github.ref_name }}.tar.gz ${{ github.ref_name }}
tar -cJf ${{ github.ref_name }}.tar.xz ${{ github.ref_name }}
tar -czf ${{ github.ref_name }}-cmake.tar.gz ${{ github.ref_name }}
tar -cJf ${{ github.ref_name }}-cmake.tar.xz ${{ github.ref_name }}
- uses: softprops/action-gh-release@v1
with:
files: |
${{ github.ref_name }}.tar.gz
${{ github.ref_name }}.tar.xz
${{ github.ref_name }}-cmake.tar.gz
${{ github.ref_name }}-cmake.tar.xz
release-windows:
runs-on: windows-latest
Expand All @@ -50,11 +50,11 @@ jobs:
- name: Create archives
shell: cmd
run: |
7z a ${{ github.ref_name }}.zip ${{ github.ref_name }}
7z a ${{ github.ref_name }}.7z ${{ github.ref_name }}
7z a ${{ github.ref_name }}-cmake.zip ${{ github.ref_name }}
7z a ${{ github.ref_name }}-cmake.7z ${{ github.ref_name }}
- uses: softprops/action-gh-release@v1
with:
files: |
${{ github.ref_name }}.zip
${{ github.ref_name }}.7z
${{ github.ref_name }}-cmake.zip
${{ github.ref_name }}-cmake.7z

0 comments on commit 78fdfc7

Please sign in to comment.