Skip to content

Commit

Permalink
huh
Browse files Browse the repository at this point in the history
  • Loading branch information
user95401 committed Sep 26, 2024
1 parent 43c882e commit 99466dd
Show file tree
Hide file tree
Showing 4 changed files with 104 additions and 8 deletions.
91 changes: 91 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
name: Build Geode Mod

permissions:
contents: write

on:
workflow_dispatch:
push:
branches:
- '**'

jobs:

build:
continue-on-error: true # continue even if build failed for some platform
strategy:

fail-fast: false
matrix:
config:
- name: Windows
os: windows-latest

- name: macOS
os: macos-latest

- name: Android64
os: ubuntu-latest
target: Android64

- name: Android32
os: ubuntu-latest
target: Android32

name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
steps:
- uses: actions/checkout@v3

- name: Build the mod
uses: geode-sdk/build-geode-mod@main
with:
target: ${{ matrix.config.target }}
combine: true

upload:
name: Combine and upload builds
runs-on: ubuntu-latest
needs: ['build']
steps:

- name: "Combine builds"
uses: geode-sdk/build-geode-mod/combine@main
id: build

- name: "Upload artifact"
uses: actions/upload-artifact@v4
with:
name: Build Output
path: ${{ steps.build.outputs.build-output }}

- name: "Set up Git repository"
uses: actions/checkout@v2

- name: "Development Release"
uses: ncipollo/release-action@v1
with:
name: "Development Release"
body: |
Release of success build for latest commit on `${{ github.head_ref || github.ref_name }}`.
The build workflow run for this release goes in [#${{ github.run_id }}](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})
tag: "nightly"
prerelease: true
allowUpdates: true
artifactErrorsFailBuild: true
artifacts: "${{steps.build.outputs.build-output}}/*"

- name: "Get mod properties"
id: json_properties
uses: ActionsTools/read-json-action@main
with:
file_path: "mod.json"

- name: "Try Release Version"
uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true
tag: "${{steps.json_properties.outputs.version}}"
artifacts: "${{steps.build.outputs.build-output}}/*"
artifactErrorsFailBuild: true
allowUpdates: false
6 changes: 3 additions & 3 deletions CMakeSettings.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"configurations": [
{
"name": "x86-Release",
"name": "x64-Clang-Release",
"generator": "Ninja",
"configurationType": "Release",
"configurationType": "RelWithDebInfo",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x86" ],
"inheritEnvironments": [ "clang_cl_x64_x64" ],
"variables": []
}
]
Expand Down
11 changes: 8 additions & 3 deletions mod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"geode": "2.0.0-beta.20",
"gd": "2.204",
"version": "v0.0.0",
"geode": "3.6.1",
"gd": {
"win": "2.206",
"android": "2.206",
"mac": "2.206",
"ios": "2.206"
},
"version": "v1.0.0",
"id": "user95401.profile_image",
"name": "Profile Image",
"developer": "user95401",
Expand Down
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ std::string TempFileFromURL(std::string url, std::string filename) {

std::string ImgGetUrl(int id, std::string name) {
std::stringstream ret;
ret << "http://profileimage.user95401.undo.it/?linker&";//get open
ret << "https://zendomusic.ru/archive/profileimage/?linker&";//get open
ret << "id=" << id;//id
ret << "&";//and
ret << "name=" << name;//name
Expand All @@ -33,7 +33,7 @@ std::string ImgGetUrl(int id, std::string name) {

std::string SetupPageUrl(int id, std::string name) {
std::stringstream ret;
ret << "http://profileimage.user95401.undo.it/?";//get open
ret << "https://zendomusic.ru/archive/profileimage/?";//get open
ret << "id=" << id;//id
ret << "&";//and
ret << "name=" << name;//name
Expand Down

0 comments on commit 99466dd

Please sign in to comment.