Skip to content

Commit aa4f079

Browse files
authored
Gh actions packaging bugfix (#3)
* Test * Revert "Test" This reverts commit 618ab73. * Remove packaging * Bugfix
1 parent 6aac0ed commit aa4f079

File tree

1 file changed

+21
-15
lines changed

1 file changed

+21
-15
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,17 @@ jobs:
2929
- name: Running the tests
3030
run: ./cstest -help
3131

32-
- name: Create package
33-
run: |
34-
tar cvzf cstest.tar.gz cstest
32+
# - name: Create package
33+
# run: |
34+
# tar cvzf cstest.tar.gz cstest
3535

3636
- name: Upload package
3737
uses: actions/[email protected]
3838
with:
39-
name: cstest-linux.tar.gz
40-
path: cstest.tar.gz
39+
# name: cstest-linux.tar.gz
40+
# path: cstest.tar.gz
41+
name: cstest-linux
42+
path: cstest
4143

4244
windows-build:
4345
name: Windows build
@@ -61,15 +63,17 @@ jobs:
6163
- name: Running the tests
6264
run: cstest.exe -help
6365

64-
- name: Create package
65-
run: |
66-
7z.exe a -tzip -r cstest.zip cstest.exe
66+
# - name: Create package
67+
# run: |
68+
# 7z.exe a -tzip -r cstest.zip cstest.exe
6769

6870
- name: Upload package
6971
uses: actions/[email protected]
7072
with:
71-
name: cstest-windows.zip
72-
path: cstest.zip
73+
# name: cstest-windows.zip
74+
# path: cstest.zip
75+
name: cstest-windows
76+
path: cstest.exe
7377

7478
macOS-build:
7579
name: MacOS build
@@ -98,12 +102,14 @@ jobs:
98102
- name: Running the tests
99103
run: ./cstest -help
100104

101-
- name: Create package
102-
run: |
103-
tar cvzf cstest.tar.gz cstest
105+
# - name: Create package
106+
# run: |
107+
# tar cvzf cstest.tar.gz cstest
104108

105109
- name: Upload package
106110
uses: actions/[email protected]
107111
with:
108-
name: cstest-macOS.tar.gz
109-
path: cstest.tar.gz
112+
# name: cstest-macOS.tar.gz
113+
# path: cstest.tar.gz
114+
name: cstest-macOS
115+
path: cstest

0 commit comments

Comments
 (0)