mirror of
https://github.com/Myzel394/Alibi.git
synced 2025-06-19 07:15:25 +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:
|
signingKeyAlias:
|
||||||
description: 'The alias for the Key'
|
description: 'The alias for the Key'
|
||||||
required: true
|
required: true
|
||||||
|
keyStoreBase64:
|
||||||
|
description: 'The KeyStore file encoded as base64'
|
||||||
|
required: true
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: composite
|
using: composite
|
||||||
@ -20,7 +23,7 @@ runs:
|
|||||||
uses: timheuer/base64-to-file@v1.0.3
|
uses: timheuer/base64-to-file@v1.0.3
|
||||||
with:
|
with:
|
||||||
fileName: key.jks
|
fileName: key.jks
|
||||||
encodedString: ${{ secrets.KEYSTORE }}
|
encodedString: ${{ inputs.keyStoreBase64 }}
|
||||||
|
|
||||||
- name: Write Keystore properties 🗝️
|
- name: Write Keystore properties 🗝️
|
||||||
shell: bash
|
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 }}
|
signingStorePassword: ${{ secrets.SIGNING_STORE_PASSWORD }}
|
||||||
signingKeyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }}
|
signingKeyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }}
|
||||||
signingKeyAlias: ${{ secrets.SIGNING_KEY_ALIAS }}
|
signingKeyAlias: ${{ secrets.SIGNING_KEY_ALIAS }}
|
||||||
|
keyStoreBase64: ${{ secrets.KEYSTORE }}
|
||||||
|
|
||||||
- name: Setup Java
|
- name: Setup Java
|
||||||
uses: actions/setup-java@v3
|
uses: actions/setup-java@v3
|
||||||
|
@ -18,6 +18,7 @@ jobs:
|
|||||||
signingStorePassword: ${{ secrets.SIGNING_STORE_PASSWORD }}
|
signingStorePassword: ${{ secrets.SIGNING_STORE_PASSWORD }}
|
||||||
signingKeyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }}
|
signingKeyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }}
|
||||||
signingKeyAlias: ${{ secrets.SIGNING_KEY_ALIAS }}
|
signingKeyAlias: ${{ secrets.SIGNING_KEY_ALIAS }}
|
||||||
|
keyStoreBase64: ${{ secrets.KEYSTORE }}
|
||||||
|
|
||||||
- name: Setup Java
|
- name: Setup Java
|
||||||
uses: actions/setup-java@v3
|
uses: actions/setup-java@v3
|
||||||
|
Loading…
x
Reference in New Issue
Block a user