mirror of
https://github.com/multipleof4/.github.git
synced 2026-01-13 15:27:54 +00:00
Create README.md
This commit is contained in:
48
README.md
Normal file
48
README.md
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
```yml
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
name:
|
||||||
|
required: true
|
||||||
|
jobs:
|
||||||
|
gen:
|
||||||
|
uses: multipleof4/.actions/.github/workflows/gen-keystore.yml@master
|
||||||
|
with:
|
||||||
|
name: ${{ github.event.inputs.name }}
|
||||||
|
secrets:
|
||||||
|
KEYSTORE_PASS: ${{ secrets.KEYSTORE_PASS }}
|
||||||
|
KEY_PASS: ${{ secrets.KEY_PASS }}
|
||||||
|
```
|
||||||
|
```yml
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
unsigned_apk:
|
||||||
|
required: false
|
||||||
|
default: sune-1500-unsigned.apk
|
||||||
|
jobs:
|
||||||
|
call:
|
||||||
|
uses: multipleof4/.actions/.github/workflows/sign-apk.yml@master
|
||||||
|
with:
|
||||||
|
unsigned_apk: ${{ github.event.inputs.unsigned_apk }}
|
||||||
|
secrets:
|
||||||
|
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
|
||||||
|
KEYSTORE_PASS: ${{ secrets.KEYSTORE_PASS }}
|
||||||
|
KEY_PASS: ${{ secrets.KEY_PASS }}
|
||||||
|
JKS_BASE64: ${{ secrets.JKS_BASE64 }}
|
||||||
|
```
|
||||||
|
```yml
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
repo:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
jobs:
|
||||||
|
mirror:
|
||||||
|
uses: multipleof4/.actions/.github/workflows/repo-mirror.yml@master
|
||||||
|
with:
|
||||||
|
repo: ${{ inputs.repo }}
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user