diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 54224a873b..cae0fe3775 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -1,5 +1,4 @@ name: 'CI' - on: push: branches: @@ -8,6 +7,7 @@ on: - '*' - '!flatpak' +# Jobs jobs: # Build Project build: @@ -33,7 +33,7 @@ jobs: - name: Build run: ./scripts/build.mjs appimage ${{ matrix.arch }} - name: Upload Artifacts - uses: christopherhx/gitea-upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: ${{ matrix.arch }} path: ./out/*.AppImage* @@ -87,7 +87,7 @@ jobs: run: ./scripts/install-dependencies.sh example_mods amd64 # SDK - name: Download SDK - uses: christopherhx/gitea-download-artifact@v4 + uses: actions/download-artifact@v3 with: name: AMD64 path: out @@ -100,7 +100,7 @@ jobs: - name: Build Example Mods run: ./example-mods/build.sh - name: Upload Artifacts - uses: christopherhx/gitea-upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: Example Mods path: ./example-mods/out/* @@ -123,7 +123,7 @@ jobs: go-version: '>=1.20.1' # Download Artifacts - name: Download Artifacts - uses: christopherhx/gitea-download-artifact@v4 + uses: actions/download-artifact@v3 with: path: out # Create Release @@ -133,4 +133,4 @@ jobs: files: ./out/*/*.AppImage* api_key: ${{ secrets.RELEASE_TOKEN }} title: v${{ github.ref_name }} - body: "[View Changelog](https://gitea.thebrokenrail.com/minecraft-pi-reborn/minecraft-pi-reborn/src/branch/master/docs/CHANGELOG.md)" + body: '[View Changelog](https://gitea.thebrokenrail.com/minecraft-pi-reborn/minecraft-pi-reborn/src/branch/master/docs/CHANGELOG.md)' diff --git a/dependencies/glfw/CMakeLists.txt b/dependencies/glfw/CMakeLists.txt index 7504dc838a..ac8b69ea66 100644 --- a/dependencies/glfw/CMakeLists.txt +++ b/dependencies/glfw/CMakeLists.txt @@ -20,7 +20,7 @@ add_subdirectory(src EXCLUDE_FROM_ALL) unset(MESSAGE_QUIET) # Install -setup_library(glfw TRUE FALSE) +setup_library(glfw TRUE TRUE) # License install(FILES src/LICENSE.md DESTINATION "${MCPI_LEGAL_DIR}/GLFW")