Можули #3
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: Можули | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| ROM_URL: | |
| description: 'ROM_URL' | |
| required: true | |
| default: 'https://github.com/FoxetGSI/Builds/releases/download/06is1527/Generic-AB-13-2025-06-02-FoxetGSI.7z' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Download & Patch | |
| run: | | |
| git clone https://github.com/RadGoodNow/YaEbuEbuGSITool/ && cd YaEbuEbuGSITool | |
| bash LinkToGSI.sh ${{github.event.inputs.ROM_URL}} Pixel | |
| - name: Upload to Release | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| files: | | |
| Output/*.img | |
| name: FoxetGSI-${{ github.run_id }} | |
| tag_name: ${{ github.run_id }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |