Skip to content

Commit

Permalink
ci: Package installer on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Cavonstavant committed Nov 12, 2022
1 parent e80f1b5 commit a5913a7
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,19 @@ jobs:
message(FATAL_ERROR "Bad exit status. Failed to build RTYPE project.")
endif()
- name: Package
shell: cmake -P {0}
if: matrix.platform == 'ubuntu-latest'
run: |
execute_process(
COMMAND cpack
WORKING_DIRECTORY build
RESULT_VARIABLE result
)
if (NOT result EQUAL 0)
message(FATAL_ERROR "Bad exit status. Failed to build RTYPE project.")
endif()
- name: Create msi installer
if: matrix.platform == 'windows-latest'
run: |
Expand Down

0 comments on commit a5913a7

Please sign in to comment.