Skip to content

Lopla/Pla-Build

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Build PLA Application artefact

Uses pla framework to create artefact using pla platform

Inputs

keystore-base64

Required Keystore that contains key used for signing your package. It's a base64 serilized keystore that can be crated using command

keytool -genkeypair -v -keystore my-relase.keystore -alias pla -keyalg RSA -keysize 2048 -validity 10000
cat my-relase.keystore | base64 --w 0

You should put it in your gith hub secrets and then pass it to your script as:

${{ secrets.KEYSTORE }}

keystore-pass

Required Keystore password. You should put it in your gith hub secrets and then pass it to your script as:

${{ secrets.PASSWORD }}

Outputs

time

The time we greeted you.

Example usage

Make sure that you have create your project Pla.App in a root folder

uses: actions/Pla-build@v1
with:
  keystore-base64: secrets.KEYSTORE
  keystore-pass:  secrets.PASSWORD