We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fcc5d0 commit 913dae5Copy full SHA for 913dae5
1 file changed
.github/workflows/mojuli_build.yml
@@ -0,0 +1,27 @@
1
+name: Можули
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ ROM_URL:
7
+ description: 'ROM_URL'
8
+ required: true
9
+ default: 'https://github.com/FoxetGSI/Builds/releases/download/06is1527/Generic-AB-13-2025-06-02-FoxetGSI.7z'
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ contents: write
15
+ steps:
16
+ - name: Download & Patch
17
+ run: |
18
+ bash LinkToGSI.sh ${{github.event.inputs.ROM_URL}} Pixel
19
+ - name: Upload to Release
20
+ uses: softprops/action-gh-release@v1
21
+ with:
22
+ files: |
23
+ Output/*.img
24
+ name: FoxetGSI-${{ github.run_id }}
25
+ tag_name: ${{ github.run_id }}
26
+ env:
27
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments