Delete workflows/readme.md

This commit is contained in:
2025-08-31 17:52:43 -07:00
committed by GitHub
parent 0e1d4804ed
commit ea619ef1eb

View File

@@ -1,48 +0,0 @@
```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 }}
```