fix(ci-cd): Fix variables

This commit is contained in:
Myzel394 2023-09-18 19:24:06 +02:00
parent 7c9bf4419a
commit 541ed41012
No known key found for this signature in database
GPG Key ID: 79CC92F37B3E1A2B
3 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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

View File

@ -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