Skip to content

Commit

Permalink
Merge branch 'master' of github.com:EmmyLua/EmmyLuaDebugger
Browse files Browse the repository at this point in the history
  • Loading branch information
CppCXY committed Mar 29, 2022
2 parents bd43fc3 + 40f5739 commit 9efd984
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 25 deletions.
53 changes: 46 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.platform }}
path: ${{ github.workspace }}/artifact/
path: ${{ github.workspace }}/artifact/bin

upload-release:
name: Upload Release
Expand All @@ -71,7 +71,46 @@ jobs:
- name: Download
uses: actions/download-artifact@v2
- name: Display structure of downloaded files
run: ls -R
run: ls -R
- name: zip win32-x64
uses: TheDoctor0/zip-release@master
with:
filename: win32-x64.zip
directory: win32-x64
path: |
EasyHook.dll
emmy_core.dll
emmy_hook.dll
emmy_tool.exe
- name: zip win32-x86
uses: TheDoctor0/zip-release@master
with:
filename: win32-x86.zip
directory: win32-x86
path: |
EasyHook.dll
emmy_core.dll
emmy_hook.dll
emmy_tool.exe
- name: zip linux-x64
uses: TheDoctor0/zip-release@master
with:
filename: linux-x64.zip
directory: linux-x64
path: emmy_core.so
- name: zip darwin-x64
uses: TheDoctor0/zip-release@master
with:
filename: darwin-x64.zip
directory: darwin-x64
path: emmy_core.dylib
- name: zip darwin-arm64
uses: TheDoctor0/zip-release@master
with:
filename: darwin-arm64.zip
directory: darwin-arm64
path: emmy_core.dylib
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
Expand All @@ -80,9 +119,9 @@ jobs:
draft: false
generate_release_notes: true
files: |
win32-x64.zip
win32-x86.zip
darwin-arm64.zip
darwin-x64.zip
linux-x64.zip
win32-x64/win32-x64.zip
win32-x86/win32-x86.zip
darwin-arm64/darwin-arm64.zip
darwin-x64/darwin-x64.zip
linux-x64/linux-x64.zip
token: ${{ secrets.RELEASE }}
10 changes: 0 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,3 @@ script:
- cd build
- cmake -DCMAKE_BUILD_TYPE=Release ../
- make install
deploy:
provider: releases
api_key: $OAUTH_TOKEN
file:
- "install/bin/emmy_core.so"
- "install/bin/emmy_core.dylib"
skip_cleanup: true
draft: false
on:
tags: true
9 changes: 1 addition & 8 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.0.{build}
version: 1.2.0.{build}
image: Visual Studio 2017
build_script:
- cmd: >-
Expand All @@ -25,10 +25,3 @@ artifacts:
name: emmy_core@x64
- path: x86/install/bin
name: emmy_core@x86
deploy:
- provider: GitHub
auth_token:
secure: U8373EzCEIi+fvS6fuw52T7Uvwylslbz5OglnKfScYXUs7Acn7v4Kns+T0aqzOcK
on:
# branch: master
APPVEYOR_REPO_TAG: true

0 comments on commit 9efd984

Please sign in to comment.