mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 01:01:00 -04:00
update actions
- move resource uploading action later in the chain - try to fix clang build
This commit is contained in:
parent
adcfed3923
commit
fdbc7344b3
2 changed files with 8 additions and 8 deletions
14
.github/workflows/build.yml
vendored
14
.github/workflows/build.yml
vendored
|
@ -71,13 +71,6 @@ jobs:
|
|||
run: |
|
||||
${{ matrix.config.prefixes }} cmake -B ${{ github.workspace }}/build ${{ matrix.config.extra_flags }} -DGEODE_DISABLE_CLI_CALLS=ON -DCLI_PATH="${{ github.workspace }}/cli"
|
||||
|
||||
- name: Publish resources
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: resources
|
||||
path: ./bin/nightly/resources.zip
|
||||
if: matrix.config.os == 'windows-latest'
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
cd build
|
||||
|
@ -96,6 +89,13 @@ jobs:
|
|||
path: ${{ github.workspace }}/VERSION
|
||||
id: version
|
||||
|
||||
- name: Upload resources
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: resources
|
||||
path: ./bin/nightly/resources.zip
|
||||
if: matrix.config.os == 'windows-latest'
|
||||
|
||||
- name: Upload Artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
|
|
|
@ -9,7 +9,7 @@ namespace cocos2d {
|
|||
|
||||
namespace geode {
|
||||
template<class T>
|
||||
concept IDProvidable = std::is_base_of_v<cocos2d::CCNode, T> && requires {
|
||||
concept IDProvidable = requires {
|
||||
{ T::CLASS_NAME } -> std::convertible_to<const char*>;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue