Skip to content

Commit

Permalink
Updating package github action. (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chukobyte authored Feb 13, 2025
1 parent d8a1e24 commit 3e6b146
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/package-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,21 +53,21 @@ jobs:
Compress-Archive -Path windows_run_dependencies -DestinationPath ${{ github.workspace }}\windows_run_dependencies.zip
- name: store engine binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crescent_engine_windows.exe
path: crescent_engine_windows.exe
if-no-files-found: error

- name: store editor binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crescent_engine_editor_windows.exe
path: crescent_engine_editor_windows.exe
if-no-files-found: error

- name: store windows deps
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows_run_dependencies.zip
path: windows_run_dependencies.zip
Expand Down Expand Up @@ -117,14 +117,14 @@ jobs:
${{ github.workspace }}/builds/crescent_engine_editor_test
- name: store engine binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crescent_engine_linux
path: crescent_engine_linux
if-no-files-found: error

- name: store editor binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crescent_engine_editor_linux
path: crescent_engine_editor_linux
Expand Down Expand Up @@ -205,14 +205,14 @@ jobs:
# codesign -s "${{ secrets.MAC_SIGNING_ID }}" -v crescent_engine_editor_macosx

- name: store engine binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crescent_engine_macosx
path: crescent_engine_macosx
if-no-files-found: error

- name: store engine binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crescent_engine_editor_macosx
path: crescent_engine_editor_macosx
Expand Down
2 changes: 1 addition & 1 deletion engine/src/core/core_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <seika/macro_utils.h>

#define CRE_VERSION_MAJOR 0
#define CRE_VERSION_MINOR 19
#define CRE_VERSION_MINOR 18
#define CRE_VERSION_PATCH 0

#define CRE_CORE_VERSION (SKA_MACRO_TO_STRING(CRE_VERSION_MAJOR) "." SKA_MACRO_TO_STRING(CRE_VERSION_MINOR) "." SKA_MACRO_TO_STRING(CRE_VERSION_PATCH))

0 comments on commit 3e6b146

Please sign in to comment.