mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
actions debugging
This commit is contained in:
parent
67536c74a9
commit
5107ab9440
17
.github/workflows/main.yml
vendored
17
.github/workflows/main.yml
vendored
@ -16,16 +16,25 @@ jobs:
|
|||||||
java-package: jdk
|
java-package: jdk
|
||||||
architecture: x64
|
architecture: x64
|
||||||
|
|
||||||
|
- name: initialize gpg
|
||||||
|
run: |
|
||||||
|
set -x
|
||||||
|
echo "${{ secrets.GITHUB_GPG_KEY }}" | base64 -d > private.key
|
||||||
|
gpg --import ./private.key
|
||||||
|
rm .private.key
|
||||||
|
ls -l ~/.gnupg/
|
||||||
|
|
||||||
|
- name: set git username
|
||||||
|
run: git config --global user.email "${{ secrets.NBDROID_EMAIL }}"
|
||||||
|
- name: set git email
|
||||||
|
run: git config --global user.name "${{ secrets.NBDROID_NAME }}"
|
||||||
|
|
||||||
- name: Cache Maven packages
|
- name: Cache Maven packages
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
with:
|
with:
|
||||||
path: ~/.m2
|
path: ~/.m2
|
||||||
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
|
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
|
||||||
restore-keys: ${{ runner.os }}-m2
|
restore-keys: ${{ runner.os }}-m2
|
||||||
- name: set git username
|
|
||||||
run: git config --global user.email "${{ secrets.NBDROID_EMAIL }}"
|
|
||||||
- name: set git email
|
|
||||||
run: git config --global user.name "${{ secrets.NBDROID_NAME }}"
|
|
||||||
|
|
||||||
- name: read versions
|
- name: read versions
|
||||||
run: |
|
run: |
|
||||||
|
Loading…
Reference in New Issue
Block a user