This repository was archived by the owner on Dec 19, 2025. It is now read-only.
CHG | Rename build artifacts from HyPsychEngine to HyperCodeEngine fo… #100
This file contains hidden or 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: Build and Notify | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| inputs: | |
| confirm: | |
| description: "Confirm to proceed with the build?" | |
| required: true | |
| type: boolean | |
| Mobile: | |
| description: "Include Android and iOS builds?" | |
| required: true | |
| type: boolean | |
| default: true | |
| env: | |
| ARGS: "-D officialBuild -D NotDeveloper" | |
| HAXE_VERSION: 4.3.6 | |
| jobs: | |
| confirm: | |
| if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.confirm == 'true' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: echo "✅ Build confirmed." | |
| setup-haxe: | |
| runs-on: ubuntu-latest | |
| needs: confirm | |
| steps: | |
| - uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.haxelib | |
| ~/.lime | |
| key: ${{ runner.os }}-haxe-${{ hashFiles('Project.xml', '**/*.hxml', '**/haxelib.json') }} | |
| restore-keys: ${{ runner.os }}-haxe- | |
| version: | |
| runs-on: ubuntu-latest | |
| needs: setup-haxe | |
| outputs: | |
| version_tag: ${{ steps.setver.outputs.version }} | |
| steps: | |
| - id: setver | |
| run: echo "version=4.0.0-${{ github.run_id }}" >> "$GITHUB_OUTPUT" | |
| - run: echo "4.0.0-${{ github.run_id }}" > VERSION | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: Version | |
| path: VERSION | |
| buildLinux: | |
| runs-on: ubuntu-latest | |
| needs: [version, confirm] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: Version | |
| - uses: krdlab/setup-haxe@master | |
| with: | |
| haxe-version: ${{ env.HAXE_VERSION }} | |
| - run: bash ./ci/setup-haxe.sh | |
| - run: haxelib run lime build Project.xml linux --app-version="$(cat VERSION)" "$ARGS" | |
| - run: zip -r HyperCodeEngine-Linux.zip export/release/linux/bin | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: Linux Build | |
| path: HyperCodeEngine-Linux.zip | |
| buildWindows: | |
| runs-on: windows-latest | |
| needs: [version, confirm] | |
| strategy: | |
| matrix: | |
| arch: [64, 32] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: Version | |
| - uses: krdlab/setup-haxe@master | |
| with: | |
| haxe-version: ${{ env.HAXE_VERSION }} | |
| - run: setup\windows.bat | |
| shell: cmd | |
| - run: haxelib run lime build windows ${{ matrix.arch == 32 && '-32 -D 32bits -D HXCPP_M32' || '' }} --app-version="$(cat VERSION)" "$ARGS" | |
| shell: bash | |
| - run: powershell Compress-Archive -Path export/${{ matrix.arch == 64 && 'release' || '32bit' }}/windows/bin/* -DestinationPath HyperCodeEngine-Windows-x${{ matrix.arch }}.zip | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: Windows Build (x${{ matrix.arch }}) | |
| path: HyperCodeEngine-Windows-x${{ matrix.arch }}.zip | |
| buildMac: | |
| runs-on: macos-13 | |
| needs: [version, confirm] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: Version | |
| - uses: krdlab/setup-haxe@master | |
| with: | |
| haxe-version: ${{ env.HAXE_VERSION }} | |
| - run: bash ./ci/setup-haxe.sh | |
| - run: haxelib run lime rebuild lime mac -64 | |
| - run: haxelib run lime build mac --app-version="$(cat VERSION)" "$ARGS" | |
| - run: ditto -c -k --sequesterRsrc --keepParent export/release/macos/bin/HyperCodeEngine.app HyperCodeEngine-macOS.zip | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: macOS Build | |
| path: HyperCodeEngine-macOS.zip | |
| buildAndroid: | |
| if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.Mobile == 'true' }} | |
| runs-on: ubuntu-latest | |
| needs: [version, confirm] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: Version | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - uses: krdlab/setup-haxe@master | |
| with: | |
| haxe-version: ${{ env.HAXE_VERSION }} | |
| - run: bash ./ci/setup-haxe.sh | |
| - run: haxelib run lime setup android | |
| - run: haxelib run lime build android --app-version="$(cat VERSION)" "$ARGS" | |
| - run: zip -r HyperCodeEngine-Android.zip export/release/android/bin | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: Android Build | |
| path: HyperCodeEngine-Android.zip | |
| buildiOS: | |
| if: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.Mobile == 'true' }} | |
| runs-on: macos-13 | |
| needs: [version, confirm] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: Version | |
| - uses: krdlab/setup-haxe@master | |
| with: | |
| haxe-version: ${{ env.HAXE_VERSION }} | |
| - run: bash ./ci/setup-haxe.sh | |
| - run: haxelib run lime setup ios | |
| - run: haxelib run lime build ios --app-version="$(cat VERSION)" "$ARGS" | |
| - run: zip -r HyperCodeEngine-iOS.zip export/release/ios/bin | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: iOS Build | |
| path: HyperCodeEngine-iOS.zip | |
| notifyDiscord: | |
| runs-on: ubuntu-latest | |
| if: always() | |
| needs: | |
| - buildLinux | |
| - buildWindows | |
| - buildMac | |
| - buildAndroid | |
| - buildiOS | |
| - version | |
| steps: | |
| - name: Notify Discord | |
| env: | |
| DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL }} | |
| RUN_URL: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
| COMMIT_URL: https://github.com/${{ github.repository }}/commit/${{ github.sha }} | |
| BRANCH: ${{ github.ref_name }} | |
| COMMIT_MESSAGE: ${{ github.event.head_commit.message || github.event.pull_request.title || 'Manual Trigger' }} | |
| VERSION: ${{ needs.version.outputs.version_tag }} | |
| run: | | |
| check() { | |
| case "$1" in | |
| success) echo "✅ Success";; | |
| skipped) echo "⚪ Skipped";; | |
| *) echo "❌ Failed";; | |
| esac | |
| } | |
| STATUS_LINUX=$(check "${{ needs.buildLinux.result }}") | |
| STATUS_WIN=$(check "${{ needs.buildWindows.result }}") | |
| STATUS_MAC=$(check "${{ needs.buildMac.result }}") | |
| STATUS_ANDROID=$(check "${{ needs.buildAndroid.result }}") | |
| STATUS_IOS=$(check "${{ needs.buildiOS.result }}") | |
| TITLE="✅ All Builds Succeeded" | |
| COLOR=65280 | |
| for status in "$STATUS_LINUX" "$STATUS_WIN" "$STATUS_MAC" "$STATUS_ANDROID" "$STATUS_IOS"; do | |
| if [[ "$status" == "❌ Failed" ]]; then | |
| TITLE="❌ Build Failure Detected" | |
| COLOR=16711680 | |
| break | |
| fi | |
| done | |
| CONTENT="🖥️ **Desktop Builds**\n• Linux: $STATUS_LINUX\n• Windows: $STATUS_WIN\n• macOS: $STATUS_MAC\n\n📱 **Mobile Builds**\n• Android: $STATUS_ANDROID\n• iOS: $STATUS_IOS" | |
| curl -H "Content-Type: application/json" -X POST -d "{ | |
| \"embeds\": [{ | |
| \"title\": \"$TITLE\", | |
| \"description\": \"$CONTENT\", | |
| \"color\": $COLOR, | |
| \"fields\": [ | |
| { \"name\": \"📝 Commit Message\", \"value\": \"${COMMIT_MESSAGE}\" }, | |
| { \"name\": \"📦 Branch\", \"value\": \"$BRANCH\", \"inline\": true }, | |
| { \"name\": \"🔖 Commit\", \"value\": \"[View Commit]($COMMIT_URL)\", \"inline\": true }, | |
| { \"name\": \"🔗 Workflow Run\", \"value\": \"[Click Here]($RUN_URL)\" }, | |
| { \"name\": \"🧾 Version\", \"value\": \"$VERSION\" } | |
| ], | |
| \"footer\": { \"text\": \"Haxe CI • ${{ github.repository }}\" }, | |
| \"timestamp\": \"$(date -u +%Y-%m-%dT%H:%M:%SZ)\" | |
| }] | |
| }" "$DISCORD_WEBHOOK" | |
| upload-to-github-releases: | |
| runs-on: ubuntu-latest | |
| needs: | |
| - buildLinux | |
| - buildWindows | |
| - buildMac | |
| - buildAndroid | |
| - buildiOS | |
| - version | |
| if: github.ref == 'refs/heads/main' && github.event_name == 'push' | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Download artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| path: builds | |
| - name: Create Release | |
| id: create_release | |
| uses: actions/create-release@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| tag_name: ${{ needs.version.outputs.version_tag }} | |
| release_name: \[AutoBuild Bata\] Release ${{ needs.version.outputs.version_tag }} | |
| body: | | |
| 🚧 **[AutoBuild] Experimental Release – Use With Caution!** | |
| This release was automatically built from the latest changes pushed to the `main` branch. | |
| It is generated for testing, preview, and development purposes only, and is **not considered stable or production-ready**. | |
| --- | |
| ### ⚠️ Disclaimer: | |
| This version is **NOT an official release**. It may: | |
| - Contain incomplete or experimental features. | |
| - Include untested code or breaking changes. | |
| - Lack performance optimization or full support across platforms. | |
| - Be removed or overwritten in future automated builds. | |
| --- | |
| ### 📦 Build Information: | |
| - Version: `${{ needs.version.outputs.version_tag }}` | |
| - Branch: `main` | |
| - Commit: `${{ github.sha }}` | |
| - Trigger: `${{ github.event_name }}` | |
| - Timestamp: `${{ github.event.created }}` | |
| --- | |
| ### 📋 What’s included: | |
| - ✅ Desktop builds (Linux, Windows, macOS) | |
| - ✅ Mobile builds (Android, iOS) *(if selected)* | |
| - ✅ Automatically versioned build artifacts | |
| - ✅ Discord notifications upon completion | |
| --- | |
| ### 📣 Reporting Issues | |
| Found a bug or unexpected behavior? Please open an issue on our GitHub repo and describe: | |
| - What you were doing | |
| - Expected vs actual results | |
| - OS and platform info | |
| - Attach logs/screenshots if possible | |
| --- | |
| 💬 Thanks for testing! Your feedback helps us improve the project before stable releases. | |
| Follow us or watch the repo to get notified about official updates. | |
| — HyperCodeEngine AutoBuilder 🤖 | |
| draft: false | |
| prerelease: true | |
| - name: Upload Artifacts | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| files: | | |
| builds/*/*.zip | |
| builds/*/*.apk | |
| builds/*/*.ipa | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |