Skip to content

Commit

Permalink
Update build_library.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph-hart authored Apr 9, 2023
1 parent 75ce5fe commit c66301d
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/build_library.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Installer
name: Loris Library Build
on:
workflow_dispatch:
#push:
Expand All @@ -7,6 +7,26 @@ on:
#tags:
# - '*'
jobs:
build_loris_library_win:
runs-on: [self-hosted, windows]
steps:
- name: Cleanup working directory
working-directory: ${{ github.workspace }}
run: del *.* /Q /S
shell: cmd
- name: Checkout Loris repository
uses: actions/checkout@v1
with:
ref: 'main'
- name: Build Loris
working-directory: ${{ github.workspace }}
run: build_library.bat
shell: cmd
- name: Upload Installer
uses: actions/upload-artifact@v2
with:
name: loris_library_win64
path: ${{ github.workspace }}/*.zip
build_loris_library_macos:
runs-on: [self-hosted, macos]
steps:
Expand All @@ -22,5 +42,5 @@ jobs:
- name: Upload Installer
uses: actions/upload-artifact@v2
with:
name: Loris Dynamic Library macOS
name: loris_library_macOS
path: ${{ github.workspace }}/*.zip

0 comments on commit c66301d

Please sign in to comment.