File tree Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
tags :
6
6
- " *"
7
+ workflow_dispatch :
7
8
8
9
jobs :
9
10
build :
@@ -37,11 +38,23 @@ jobs:
37
38
steps :
38
39
- name : Checkout
39
40
uses : actions/checkout@v2
41
+
40
42
- uses : actions/download-artifact@v2 # download all artifacts
41
- - name : Release
43
+ - run : ls -la
44
+
45
+ - run : |
46
+ sudo apt install zip -y
47
+ zip -r image_copy_Linux.zip image_copy_Linux
48
+ zip -r image_copy_Windows.zip image_copy_Windows
49
+ zip -r image_copy_macOS.zip image_copy_macOS
50
+
51
+ - name : Release # create release
42
52
uses : softprops/action-gh-release@v1
43
53
with :
44
54
files : |
45
- image_copy_Linux
46
- image_copy_Windows
47
- image_copy_macOS
55
+ image_copy_Linux.zip
56
+ image_copy_Windows.zip
57
+ image_copy_macOS.zip
58
+
59
+ env :
60
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments