Skip to content

work_flow_demo33

work_flow_demo33 #31

on:

Check failure on line 1 in .github/workflows/workflow_dispatch.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/workflow_dispatch.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: release
push:
branches: test
tags:
- v*
jobs:
release:
steps:
- uses: r0adkll/sign-android-release@v1
name: Sign app APK
# ID used to access action output
id: sign_app
with:
releaseDirectory: app/build/outputs/apk/release
signingKeyBase64: ${{ secrets.SIGNING_KEY_STORE_BASE64 }}
alias: ${{ secrets.SIGNING_KEY_ALIAS }}
keyStorePassword: ${{ secrets.SIGNING_STORE_PASSWORD }}
keyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }}
env:
# override default build-tools version (29.0.3) -- optional
BUILD_TOOLS_VERSION: "30.0.2"
# Example use of `signedReleaseFile` output -- not needed
- uses: actions/upload-artifact@v2
with:
name: Signed app bundle
path: ${{steps.sign_app.outputs.signedReleaseFile}}