Third Time's The Charm!

This commit is contained in:
TheBrokenRail 2024-11-23 00:01:27 -05:00
parent 3d89fb691a
commit 2c3bb41293
2 changed files with 7 additions and 7 deletions

View File

@ -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)'

View File

@ -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")