update actions

- move resource uploading action later in the chain
 - try to fix clang build
This commit is contained in:
HJfod 2022-10-23 12:38:31 +03:00
parent adcfed3923
commit fdbc7344b3
2 changed files with 8 additions and 8 deletions
.github/workflows
loader/include/Geode/modify

View file

@ -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:

View file

@ -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*>;
};