Skip to content

Commit e6d23c3

Browse files
committed
rename macos and linux executables to *.bin
See #11 (reply in thread)
1 parent 90971da commit e6d23c3

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,13 @@ jobs:
4646
- name: Checkout code
4747
uses: actions/checkout@v3
4848
- uses: actions/download-artifact@v3
49-
- run: cd 'sqlpage macos-latest' && chmod +x sqlpage && tar --create --file sqlpage-macos.tgz --gzip sqlpage
50-
- run: cd 'sqlpage ubuntu-20.04' && chmod +x sqlpage && tar --create --file sqlpage-linux.tgz --gzip sqlpage
51-
- run: cd 'sqlpage windows-latest' && zip -r sqlpage-windows.zip *.exe
49+
- run: |
50+
chmod +x sqlpage*/sqlpage;
51+
mv 'sqlpage macos-latest/sqlpage' sqlpage.bin;
52+
tar --create --file sqlpage-macos.tgz --gzip sqlpage.bin;
53+
mv 'sqlpage ubuntu-20.04/sqlpage' sqlpage.bin;
54+
tar --create --file sqlpage-linux.tgz --gzip sqlpage-linux.bin
55+
cd 'sqlpage windows-latest' && zip -r sqlpage-windows.zip *.exe
5256
- name: Create Release
5357
id: create_release
5458
uses: softprops/action-gh-release@v1
@@ -58,5 +62,5 @@ jobs:
5862
draft: false
5963
files: |
6064
sqlpage windows-latest/sqlpage-windows.zip
61-
sqlpage ubuntu-20.04/sqlpage-linux.tgz
62-
sqlpage macos-latest/sqlpage-macos.tgz
65+
sqlpage-linux.tgz
66+
sqlpage-macos.tgz

0 commit comments

Comments
 (0)