键位模块补注释 #1742
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Techmino Galaxy CI | |
on: | |
push: | |
branches: [main, ci*] | |
tags: [pre*, v*] | |
pull_request: | |
branches: [main] | |
env: | |
BUILD_ASSETS_FOLDER: ./.github/build | |
BUILD_TYPE: ${{ fromJSON('["dev", "release"]')[startsWith(github.ref, 'refs/tags/v')] }} | |
CORE_LOVE_PACKAGE_PATH: ./core.love | |
CORE_LOVE_ARTIFACT_NAME: core_love_package | |
SOUNDBANK_DOWNLOAD_URL: https://kyzj-my.sharepoint.com/personal/noreply_studio26f_org/_layouts/15/download.aspx | |
jobs: | |
get-info: | |
runs-on: ubuntu-latest | |
outputs: | |
app-name: ${{ steps.app-info.outputs.app-name }} | |
version-name: ${{ steps.app-info.outputs.version-name }} | |
version-string: ${{ steps.app-info.outputs.version-string }} | |
version-code: ${{ steps.app-info.outputs.version-code }} | |
commit-hash: ${{ steps.git-info.outputs.commit-hash }} | |
base-name: ${{ steps.assemble-base-name.outputs.base-name }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install lua | |
run: | | |
sudo apt-get install lua5.3 -y | |
- name: Get app info | |
id: app-info | |
shell: lua {0} | |
run: | | |
local version = require "version" | |
os.execute('echo "app-name=' .. version.appName .. '" >> $GITHUB_OUTPUT') | |
os.execute('echo "version-name=' .. version.appVer .. '" >> $GITHUB_OUTPUT') | |
os.execute('echo "version-string=' .. version.verStr .. '" >> $GITHUB_OUTPUT') | |
os.execute('echo "version-code=' .. tostring(version.apkCode) .. '" >> $GITHUB_OUTPUT') | |
- name: Get git info | |
id: git-info | |
shell: bash | |
run: | | |
COMMIT_HASH=$(git rev-parse --short ${{ GITHUB.SHA }}) | |
echo "commit-hash=$COMMIT_HASH" >> $GITHUB_OUTPUT | |
- name: Assemble package base name | |
id: assemble-base-name | |
shell: bash | |
run: | | |
BASE_NAME=Techmino_Galaxy_${{ steps.app-info.outputs.version-string }}_${{ steps.git-info.outputs.commit-hash }}_#${{ GITHUB.RUN_NUMBER }} | |
echo "base-name=$BASE_NAME" >> $GITHUB_OUTPUT | |
build-core: | |
runs-on: ubuntu-latest | |
needs: get-info | |
env: | |
OUTPUT_FOLDER: ./build | |
RELEASE_FOLDER: ./release | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Process app name | |
id: process-app-name | |
shell: python3 {0} | |
run: | | |
import os | |
import re | |
with open(os.getenv('GITHUB_OUTPUT'), 'a') as f: | |
f.write('product-name=' + re.sub(r'[^A-Za-z0-9]+', '_', '${{ needs.get-info.outputs.app-name }}') + '\n') | |
- name: Download basic soundbank | |
run: | | |
mkdir -p soundbank | |
cd soundbank/ | |
curl --output Master.strings.bank "${{ env.SOUNDBANK_DOWNLOAD_URL }}?UniqueId=499108f8%2D5f08%2D45a9%2D84e6%2De6a75616dc3f" | |
curl --output Master.bank "${{ env.SOUNDBANK_DOWNLOAD_URL }}?UniqueId=bdd4a636%2Df72f%2D469f%2Db1b9%2D65078a7e383f" | |
curl --output Effect.bank "${{ env.SOUNDBANK_DOWNLOAD_URL }}?UniqueId=52f3f937%2D985b%2D40d6%2Da443%2Ded0152b9465b" | |
- name: Download release soundbank | |
if: ${{ startsWith(github.ref, 'refs/tags/pre') || startsWith(github.ref, 'refs/tags/v') }} | |
run: | | |
curl --output Music_Beepbox.bank "${{ env.SOUNDBANK_DOWNLOAD_URL }}?UniqueId=40e4520f%2D2f26%2D4024%2D8d72%2Dc4fc544de6ea" | |
curl --output Music_Community.bank "${{ env.SOUNDBANK_DOWNLOAD_URL }}?UniqueId=3ef03599%2D8b6c%2D4253%2Db79b%2Df76dc07fdffb" | |
curl --output Music_Extra.bank "${{ env.SOUNDBANK_DOWNLOAD_URL }}?UniqueId=e9fc37f1%2D6be5%2D4027%2Da735%2Db26682839df9" | |
curl --output Music_FL.bank "${{ env.SOUNDBANK_DOWNLOAD_URL }}?UniqueId=cf8caef4%2D3698%2D447a%2Da4ce%2D37cbf44f1206" | |
- name: Build core love package | |
uses: 26F-Studio/love-actions-core@v1 | |
with: | |
build-list: ./Zenitha/ ./assets/ ./datatable/ ./soundbank ./conf.lua ./main.lua ./version.lua ./shell.lua | |
package-path: ${{ env.CORE_LOVE_PACKAGE_PATH }} | |
- name: Upload core love package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.CORE_LOVE_ARTIFACT_NAME }} | |
path: ${{ env.CORE_LOVE_PACKAGE_PATH }} | |
- name: Rename love package | |
run: | | |
mkdir -p ${{ env.OUTPUT_FOLDER }} | |
mv ${{ env.CORE_LOVE_PACKAGE_PATH }} ${{ env.OUTPUT_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}.love | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ needs.get-info.outputs.base-name }}_Core | |
path: ${{ env.OUTPUT_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}.love | |
- name: Prepare for release | |
if: ${{ startsWith(github.ref, 'refs/tags/pre') || startsWith(github.ref, 'refs/tags/v') }} | |
shell: bash | |
run: | | |
mkdir -p ${{ env.RELEASE_FOLDER }} | |
cp ${{ env.OUTPUT_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}.love ${{ env.RELEASE_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_Bare.love | |
- name: Upload release | |
if: ${{ startsWith(github.ref, 'refs/tags/pre') || startsWith(github.ref, 'refs/tags/v') }} | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
artifacts: ${{ env.RELEASE_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_Bare.love | |
body: ${{ github.event.head_commit.message }} | |
prerelease: ${{ startsWith(github.ref, 'refs/tags/pre') }} | |
auto-test: | |
runs-on: ubuntu-latest | |
needs: build-core | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Love actions for testing | |
uses: love-actions/love-actions-test@v1 | |
with: | |
font-path: ./assets/fonts/RHDisplayGalaxy-Medium.otf | |
language-folder: ./assets/language | |
build-android: | |
runs-on: ubuntu-latest | |
needs: [get-info, build-core, auto-test] | |
if: github.event_name != 'pull_request' | |
env: | |
OUTPUT_FOLDER: ./build | |
RELEASE_FOLDER: ./release | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Process app name | |
id: process-app-name | |
shell: python3 {0} | |
run: | | |
import os | |
import re | |
with open(os.getenv('GITHUB_OUTPUT'), 'a') as f: | |
f.write('bundle-id=org.f26_studio.' + re.sub(r'[^A-Za-z0-9]+', '_', '${{ needs.get-info.outputs.app-name }}') + '\n') | |
f.write('product-name=' + re.sub(r'[^A-Za-z0-9]+', '-', '${{ needs.get-info.outputs.app-name }}') + '\n') | |
- name: Download core love package | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ env.CORE_LOVE_ARTIFACT_NAME }} | |
# - name: Download fmod lib | |
# Two .so files are in ${{ env.BUILD_ASSETS_FOLDER }}/extraLibs/Android/ | |
# Need to put them into the love package, besides the liblove.so (for each architecture) | |
# TODO: ?????????????????????????? | |
# TODO: ?????????????????????????? | |
- name: Build Android packages | |
id: build-packages | |
uses: 26F-Studio/love-actions-android@v2 | |
with: | |
app-name: ${{ needs.get-info.outputs.app-name }} | |
bundle-id: ${{ steps.process-app-name.outputs.bundle-id }} | |
icon-specifier: "@mipmap/icon" | |
keystore-alias: ${{ secrets.ANDROID_KEYSTORE_ALIAS }} | |
keystore-base64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }} | |
keystore-key-password: ${{ secrets.ANDROID_KEYSTORE_KEYPASSWORD }} | |
keystore-store-password: ${{ secrets.ANDROID_KEYSTORE_STOREPASSWORD }} | |
love-package: ${{ env.CORE_LOVE_PACKAGE_PATH }} | |
resource-path: ${{ env.BUILD_ASSETS_FOLDER }}/android/${{ env.BUILD_TYPE }}/res | |
product-name: ${{ steps.process-app-name.outputs.product-name }} | |
version-string: ${{ needs.get-info.outputs.version-string }} | |
version-code: ${{ needs.get-info.outputs.version-code }} | |
output-folder: ${{ env.OUTPUT_FOLDER }} | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ needs.get-info.outputs.base-name }}_Android_release | |
path: ${{ env.OUTPUT_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}-release.apk | |
- name: Prepare for release | |
if: ${{ startsWith(github.ref, 'refs/tags/pre') || startsWith(github.ref, 'refs/tags/v') }} | |
shell: bash | |
run: | | |
mkdir -p ${{ env.RELEASE_FOLDER }} | |
cp ${{ env.OUTPUT_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}-release.apk ${{ env.RELEASE_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_Android.apk | |
- name: Upload release | |
if: ${{ startsWith(github.ref, 'refs/tags/pre') || startsWith(github.ref, 'refs/tags/v') }} | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
artifacts: ${{ env.RELEASE_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_Android.apk | |
body: ${{ github.event.head_commit.message }} | |
prerelease: ${{ startsWith(github.ref, 'refs/tags/pre') }} | |
build-linux: | |
runs-on: ubuntu-latest | |
needs: [get-info, build-core, auto-test] | |
env: | |
OUTPUT_FOLDER: ./build | |
RELEASE_FOLDER: ./release | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Process app name | |
id: process-app-name | |
shell: python3 {0} | |
run: | | |
import os | |
import re | |
product_name = re.sub(r'[^A-Za-z0-9]+', '-', '${{ needs.get-info.outputs.app-name }}').strip('-').lower() | |
with open(os.getenv('GITHUB_OUTPUT'), 'a') as f: | |
f.write('bundle-id=org.26f-studio.' + product_name + '\n') | |
f.write('product-name=' + product_name + '\n') | |
- name: Download core love package | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ env.CORE_LOVE_ARTIFACT_NAME }} | |
- name: Add icon to love package | |
run: | | |
cp ${{ env.BUILD_ASSETS_FOLDER }}/linux/${{ env.BUILD_TYPE }}/icon.png assets/image/icon.png | |
zip -u ${{ env.CORE_LOVE_PACKAGE_PATH }} assets/image/icon.png | |
rm assets/image/icon.png | |
- name: Build Linux packages | |
id: build-packages | |
uses: 26F-Studio/love-actions-linux@v2 | |
with: | |
app-name: ${{ needs.get-info.outputs.app-name }} | |
bundle-id: ${{ steps.process-app-name.outputs.bundle-id }} | |
description: Techmino Galaxy is awesome! | |
version-string: ${{ needs.get-info.outputs.version-string }} | |
icon-path: ${{ env.BUILD_ASSETS_FOLDER }}/linux/${{ env.BUILD_TYPE }}/icon.png | |
love-package: ${{ env.CORE_LOVE_PACKAGE_PATH }} | |
lib-path: ${{ env.BUILD_ASSETS_FOLDER }}/extraLibs/Linux | |
product-name: ${{ steps.process-app-name.outputs.product-name }} | |
output-folder: ${{ env.OUTPUT_FOLDER }} | |
- name: Upload AppImage artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ needs.get-info.outputs.base-name }}_Linux_AppImage | |
path: ${{ env.OUTPUT_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}.AppImage | |
- name: Upload Debian artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ needs.get-info.outputs.base-name }}_Linux_Debian | |
path: ${{ env.OUTPUT_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}.deb | |
- name: Prepare for release | |
if: ${{ startsWith(github.ref, 'refs/tags/pre') || startsWith(github.ref, 'refs/tags/v') }} | |
shell: bash | |
run: | | |
mkdir -p ${{ env.RELEASE_FOLDER }} | |
cp ${{ env.OUTPUT_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}.AppImage ${{ env.RELEASE_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_Linux.AppImage | |
cp ${{ env.OUTPUT_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}.deb ${{ env.RELEASE_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_Linux.deb | |
- name: Upload release | |
if: ${{ startsWith(github.ref, 'refs/tags/pre') || startsWith(github.ref, 'refs/tags/v') }} | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
artifacts: | | |
${{ env.RELEASE_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_Linux.AppImage | |
${{ env.RELEASE_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_Linux.deb | |
body: ${{ github.event.head_commit.message }} | |
prerelease: ${{ startsWith(github.ref, 'refs/tags/pre') }} | |
build-web-compat: | |
runs-on: ubuntu-latest | |
needs: [get-info, build-core, auto-test] | |
env: | |
MEMORY_LIMIT: 128000000 | |
OUTPUT_FOLDER: ./build | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Download core love package | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ env.CORE_LOVE_ARTIFACT_NAME }} | |
- name: Build web packages | |
run: | | |
npx love.js ${{ env.CORE_LOVE_PACKAGE_PATH }} ${{ env.OUTPUT_FOLDER }} -t "${{ needs.get-info.outputs.app-name }}" -m ${{ env.MEMORY_LIMIT }} -c | |
- name: Move assets | |
run: | | |
mv ${{ env.BUILD_ASSETS_FOLDER }}/web-compat/${{ env.BUILD_TYPE }}/* ${{ env.OUTPUT_FOLDER }} | |
- name: Initialize Love.js Api Player | |
env: | |
LOVEJS_API_PLAYER_BASE_URL: https://raw.githubusercontent.com/MrcSnm/Love.js-Api-Player/refs/heads/master | |
run: | | |
pushd ${{ env.OUTPUT_FOLDER }} | |
sed -i 's|</head>| <script src="consolewrapper.js"></script>\n <script src="webdb.js"></script>\n</head>|' index.html | |
wget ${{ env.LOVEJS_API_PLAYER_BASE_URL }}/consolewrapper.js | |
wget ${{ env.LOVEJS_API_PLAYER_BASE_URL }}/globalizeFS.js | |
wget ${{ env.LOVEJS_API_PLAYER_BASE_URL }}/webdb.js | |
node globalizeFS.js | |
rm globalizeFS.js | |
popd | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ needs.get-info.outputs.base-name }}_Web | |
path: ${{ env.OUTPUT_FOLDER }} | |
- name: Deploy to GitHub Pages | |
uses: crazy-max/ghaction-github-pages@v4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
build_dir: ${{ env.OUTPUT_FOLDER }} | |
keep_history: false | |
target_branch: gh-pages | |
build-windows: | |
runs-on: windows-latest | |
needs: [get-info, build-core, auto-test] | |
env: | |
OUTPUT_FOLDER: ./build | |
RELEASE_FOLDER: ./release | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Process app name | |
id: process-app-name | |
shell: python3 {0} | |
run: | | |
import os | |
import re | |
with open(os.getenv('GITHUB_OUTPUT'), 'a') as f: | |
f.write('product-name=' + re.sub(r'[^A-Za-z0-9]+', '_', '${{ needs.get-info.outputs.app-name }}') + '\n') | |
- name: Download core love package | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ env.CORE_LOVE_ARTIFACT_NAME }} | |
- name: Update Windows template | |
shell: python3 {0} | |
run: | | |
version_string = "${{ needs.get-info.outputs.version-string }}" | |
file_version = (f"{version_string.replace('.', ',')},0") | |
with open("${{ env.BUILD_ASSETS_FOLDER }}/windows/${{ env.BUILD_TYPE }}/template.rc", "r+", encoding="utf8") as file: | |
data = file.read() | |
data = data\ | |
.replace("@Version", version_string)\ | |
.replace("@FileVersion", file_version) | |
file.seek(0) | |
file.truncate() | |
file.write(data) | |
- name: Build Windows packages | |
id: build-packages | |
uses: 26F-Studio/love-actions-windows@v2 | |
with: | |
icon-path: ${{ env.BUILD_ASSETS_FOLDER }}/windows/${{ env.BUILD_TYPE }}/icon.ico | |
rc-path: ${{ env.BUILD_ASSETS_FOLDER }}/windows/${{ env.BUILD_TYPE }}/template.rc | |
extra-assets-x64: ${{ env.BUILD_ASSETS_FOLDER }}/extraLibs/Windows_x64/fmod.dll ${{ env.BUILD_ASSETS_FOLDER }}/extraLibs/Windows_x64/fmodstudio.dll ${{ env.BUILD_ASSETS_FOLDER }}/extraLibs/Windows_x64/discord-rpc.dll | |
extra-assets-x86: ${{ env.BUILD_ASSETS_FOLDER }}/extraLibs/Windows_x86/fmod.dll ${{ env.BUILD_ASSETS_FOLDER }}/extraLibs/Windows_x86/fmodstudio.dll ${{ env.BUILD_ASSETS_FOLDER }}/extraLibs/Windows_x86/discord-rpc.dll | |
love-package: ${{ env.CORE_LOVE_PACKAGE_PATH }} | |
product-name: ${{ steps.process-app-name.outputs.product-name }} | |
app-id: ${{ secrets.WINDOWS_APP_ID }} | |
project-website: https://www.studio26f.org/ | |
installer-languages: ChineseSimplified.isl ChineseTraditional.isl English.isl Spanish.isl French.isl Indonesian.isl Japanese.isl Portuguese.isl | |
output-folder: ${{ env.OUTPUT_FOLDER }} | |
- name: Upload 32-bit artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ needs.get-info.outputs.base-name }}_Windows_x86 | |
path: ${{ env.OUTPUT_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_x86.zip | |
- name: Upload 64-bit artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ needs.get-info.outputs.base-name }}_Windows_x64 | |
path: ${{ env.OUTPUT_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_x64.zip | |
- name: Upload installer artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ needs.get-info.outputs.base-name }}_Windows_installer | |
path: ${{ env.OUTPUT_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_installer.exe | |
- name: Prepare for release | |
if: ${{ startsWith(github.ref, 'refs/tags/pre') || startsWith(github.ref, 'refs/tags/v') }} | |
shell: bash | |
run: | | |
mkdir -p ${{ env.RELEASE_FOLDER }} | |
cp ${{ env.OUTPUT_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_x86.zip ${{ env.RELEASE_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_Windows_x86.zip | |
cp ${{ env.OUTPUT_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_x64.zip ${{ env.RELEASE_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_Windows_x64.zip | |
cp ${{ env.OUTPUT_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_installer.exe ${{ env.RELEASE_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_Windows_installer.exe | |
- name: Upload release | |
if: ${{ startsWith(github.ref, 'refs/tags/pre') || startsWith(github.ref, 'refs/tags/v') }} | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
artifacts: | | |
${{ env.RELEASE_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_Windows_x86.zip | |
${{ env.RELEASE_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_Windows_x64.zip | |
${{ env.RELEASE_FOLDER }}/${{ steps.process-app-name.outputs.product-name }}_Windows_installer.exe | |
body: ${{ github.event.head_commit.message }} | |
prerelease: ${{ startsWith(github.ref, 'refs/tags/pre') }} | |
post-build: | |
runs-on: ubuntu-latest | |
if: ${{ always() }} | |
needs: | |
[ | |
get-info, | |
build-core, | |
auto-test, | |
build-android, | |
build-linux, | |
build-web-compat, | |
build-windows, | |
] | |
env: | |
ACTION_TYPE: ${{ fromJSON('[["Development", "Pre-release"], ["Release", "Release"]]')[startsWith(github.ref, 'refs/tags/v')][startsWith(github.ref, 'refs/tags/pre')] }} | |
steps: | |
- name: Cleanup | |
uses: geekyeggo/delete-artifact@v5 | |
with: | |
name: ${{ env.CORE_LOVE_ARTIFACT_NAME }} | |
- name: Send Discord message | |
if: github.ref == 'refs/heads/main' | |
shell: python | |
run: | | |
import requests | |
import json | |
headers = { | |
'Content-Type': 'application/json', | |
} | |
payload = json.dumps({ | |
"content": "Github Actions for **${{ github.repository }}**.", | |
"embeds": [ | |
{ | |
"author": { | |
"name": "${{ needs.get-info.outputs.app-name }} [${{ env.ACTION_TYPE }}]", | |
"url": "https://github.com/${{ github.repository }}" | |
}, | |
"title": "${{ needs.get-info.outputs.app-name }} (${{ needs.get-info.outputs.version-name }}) Build Result", | |
"description": "CI triggered at ${{ needs.get-info.outputs.commit-hash }}", | |
"url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}", | |
"thumbnail": { | |
"url": "https://raw.githubusercontent.com/${{ github.repository }}/main/.github/build/linux/${{ env.BUILD_TYPE }}/icon.png" | |
}, | |
"color": 36863, | |
"fields": [ | |
{ | |
"name": "Version", | |
"value": "${{ needs.get-info.outputs.version-string }}", | |
"inline": True | |
}, | |
{ | |
"name": "Package Name", | |
"value": "${{ needs.get-info.outputs.base-name }}", | |
"inline": True | |
}, | |
{ | |
"name": "Status", | |
"value": "**Automatic Test:** ${{ needs.auto-test.result }}\n**Core:** ${{ needs.build-core.result }}\n**Android:** ${{ needs.build-android.result }}\n**Linux:** ${{ needs.build-linux.result }}\n**Web compatible:** ${{ needs.build-web-compat.result }}\n**Windows:** ${{ needs.build-windows.result }}" | |
} | |
] | |
} | |
] | |
}) | |
requests.request("POST", "${{ secrets.DISCORD_WEBHOOK }}", headers=headers, data=payload) |