mirror of
https://github.com/Myzel394/Alibi.git
synced 2025-06-18 23:05:26 +02:00
fix(ci-cd): Fix variables
This commit is contained in:
parent
7c9bf4419a
commit
541ed41012
5
.github/actions/prepare-keystore/action.yml
vendored
5
.github/actions/prepare-keystore/action.yml
vendored
@ -11,6 +11,9 @@ inputs:
|
||||
signingKeyAlias:
|
||||
description: 'The alias for the Key'
|
||||
required: true
|
||||
keyStoreBase64:
|
||||
description: 'The KeyStore file encoded as base64'
|
||||
required: true
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
@ -20,7 +23,7 @@ runs:
|
||||
uses: timheuer/base64-to-file@v1.0.3
|
||||
with:
|
||||
fileName: key.jks
|
||||
encodedString: ${{ secrets.KEYSTORE }}
|
||||
encodedString: ${{ inputs.keyStoreBase64 }}
|
||||
|
||||
- name: Write Keystore properties 🗝️
|
||||
shell: bash
|
||||
|
1
.github/workflows/release-app-github.yaml
vendored
1
.github/workflows/release-app-github.yaml
vendored
@ -18,6 +18,7 @@ jobs:
|
||||
signingStorePassword: ${{ secrets.SIGNING_STORE_PASSWORD }}
|
||||
signingKeyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }}
|
||||
signingKeyAlias: ${{ secrets.SIGNING_KEY_ALIAS }}
|
||||
keyStoreBase64: ${{ secrets.KEYSTORE }}
|
||||
|
||||
- name: Setup Java
|
||||
uses: actions/setup-java@v3
|
||||
|
@ -18,6 +18,7 @@ jobs:
|
||||
signingStorePassword: ${{ secrets.SIGNING_STORE_PASSWORD }}
|
||||
signingKeyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }}
|
||||
signingKeyAlias: ${{ secrets.SIGNING_KEY_ALIAS }}
|
||||
keyStoreBase64: ${{ secrets.KEYSTORE }}
|
||||
|
||||
- name: Setup Java
|
||||
uses: actions/setup-java@v3
|
||||
|
Loading…
x
Reference in New Issue
Block a user