Get Server Public Key #4
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: Get Server Public Key | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| file_url: | |
| description: 'Direct URL to any Supercell game IPA file or libg.so dump' | |
| default: 'temp.sh' | |
| required: true | |
| type: string | |
| jobs: | |
| extract-server-public-key: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '10' | |
| - name: Get Server Public Key | |
| run: dotnet run --project src/SupercellProxy.PublicKeyExtractor -- "${{ inputs.file_url }}" | tee -a "$GITHUB_STEP_SUMMARY" |