GH Actions: install gpg key similar to other spring projects

This commit is contained in:
aboyko
2023-06-08 16:00:22 -04:00
parent 8d8b908b23
commit 2a5d7513a1

View File

@@ -29,6 +29,12 @@ jobs:
run: |
cd headless-services
xvfb-run mvn --batch-mode clean install -DskipTests
- name: Install GPG key
run: |
mkdir ~/gpg-keyring
cd gpg-keyring
echo "${{ secrets.GPG_PRIVATE_KEY }}" > gpg.asc
echo "${{ secrets.GPG_PASSPHRASE }}" | gpg --batch --yes --passphrase-fd 0 --import gpg.asc
- name: Build Eclipse LS extensions
env:
tools_s3_access_key: ${{ secrets.TOOLS_S3_ACCESS_KEY }}