Skip to content

Commit 9efd984

Browse files
committed
Merge branch 'master' of github.com:EmmyLua/EmmyLuaDebugger
2 parents bd43fc3 + 40f5739 commit 9efd984

File tree

3 files changed

+47
-25
lines changed

3 files changed

+47
-25
lines changed

.github/workflows/build.yml

Lines changed: 46 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
uses: actions/upload-artifact@v2
5959
with:
6060
name: ${{ matrix.platform }}
61-
path: ${{ github.workspace }}/artifact/
61+
path: ${{ github.workspace }}/artifact/bin
6262

6363
upload-release:
6464
name: Upload Release
@@ -71,7 +71,46 @@ jobs:
7171
- name: Download
7272
uses: actions/download-artifact@v2
7373
- name: Display structure of downloaded files
74-
run: ls -R
74+
run: ls -R
75+
- name: zip win32-x64
76+
uses: TheDoctor0/zip-release@master
77+
with:
78+
filename: win32-x64.zip
79+
directory: win32-x64
80+
path: |
81+
EasyHook.dll
82+
emmy_core.dll
83+
emmy_hook.dll
84+
emmy_tool.exe
85+
86+
- name: zip win32-x86
87+
uses: TheDoctor0/zip-release@master
88+
with:
89+
filename: win32-x86.zip
90+
directory: win32-x86
91+
path: |
92+
EasyHook.dll
93+
emmy_core.dll
94+
emmy_hook.dll
95+
emmy_tool.exe
96+
- name: zip linux-x64
97+
uses: TheDoctor0/zip-release@master
98+
with:
99+
filename: linux-x64.zip
100+
directory: linux-x64
101+
path: emmy_core.so
102+
- name: zip darwin-x64
103+
uses: TheDoctor0/zip-release@master
104+
with:
105+
filename: darwin-x64.zip
106+
directory: darwin-x64
107+
path: emmy_core.dylib
108+
- name: zip darwin-arm64
109+
uses: TheDoctor0/zip-release@master
110+
with:
111+
filename: darwin-arm64.zip
112+
directory: darwin-arm64
113+
path: emmy_core.dylib
75114
- name: Release
76115
uses: softprops/action-gh-release@v1
77116
if: startsWith(github.ref, 'refs/tags/')
@@ -80,9 +119,9 @@ jobs:
80119
draft: false
81120
generate_release_notes: true
82121
files: |
83-
win32-x64.zip
84-
win32-x86.zip
85-
darwin-arm64.zip
86-
darwin-x64.zip
87-
linux-x64.zip
122+
win32-x64/win32-x64.zip
123+
win32-x86/win32-x86.zip
124+
darwin-arm64/darwin-arm64.zip
125+
darwin-x64/darwin-x64.zip
126+
linux-x64/linux-x64.zip
88127
token: ${{ secrets.RELEASE }}

.travis.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,3 @@ script:
77
- cd build
88
- cmake -DCMAKE_BUILD_TYPE=Release ../
99
- make install
10-
deploy:
11-
provider: releases
12-
api_key: $OAUTH_TOKEN
13-
file:
14-
- "install/bin/emmy_core.so"
15-
- "install/bin/emmy_core.dylib"
16-
skip_cleanup: true
17-
draft: false
18-
on:
19-
tags: true

appveyor.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.0.{build}
1+
version: 1.2.0.{build}
22
image: Visual Studio 2017
33
build_script:
44
- cmd: >-
@@ -25,10 +25,3 @@ artifacts:
2525
name: emmy_core@x64
2626
- path: x86/install/bin
2727
name: emmy_core@x86
28-
deploy:
29-
- provider: GitHub
30-
auth_token:
31-
secure: U8373EzCEIi+fvS6fuw52T7Uvwylslbz5OglnKfScYXUs7Acn7v4Kns+T0aqzOcK
32-
on:
33-
# branch: master
34-
APPVEYOR_REPO_TAG: true

0 commit comments

Comments
 (0)