Skip to content

Commit 913dae5

Browse files
committed
GitHub Actions: Patch on GitHub runners
1 parent 7fcc5d0 commit 913dae5

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/mojuli_build.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)