Skip to content

Commit a0ac26c

Browse files
committed
v1.0.0 release
1 parent b890d25 commit a0ac26c

File tree

2 files changed

+11
-17
lines changed

2 files changed

+11
-17
lines changed

.github/workflows/codeql.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@ jobs:
2323
language: [ 'java' ]
2424

2525
steps:
26-
- name: 📥 Checkout repository
26+
- name: Checkout repository
2727
uses: actions/checkout@v3
2828

29-
- name: 🛡️ Initialize CodeQL
29+
- name: Initialize CodeQL
3030
uses: github/codeql-action/init@v3
3131
with:
3232
languages: ${{ matrix.language }}
3333

34-
- name: Set up JDK
34+
- name: Set up JDK
3535
uses: actions/setup-java@v3
3636
with:
3737
java-version: '17'
3838
distribution: 'temurin'
3939

40-
- name: 🔨 Build project with Maven (GPG disabled)
40+
- name: Build project with Maven (GPG disabled)
4141
run: mvn clean install -Dgpg.skip=true
4242

43-
- name: 🧪 Perform CodeQL Analysis
43+
- name: Perform CodeQL Analysis
4444
uses: github/codeql-action/analyze@v3

.github/workflows/maven.yml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,22 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- name: 📥 Checkout code
14+
- name: Checkout code
1515
uses: actions/checkout@v3
1616

17-
- name: Set up JDK
17+
- name: Set up JDK
1818
uses: actions/setup-java@v3
1919
with:
2020
java-version: '17'
2121
distribution: 'temurin'
2222

23-
- name: 🔐 Import GPG key
23+
- name: Import GPG key
2424
run: |
2525
echo "$GPG_PRIVATE_KEY" | gpg --batch --import
2626
echo "allow-loopback-pinentry" >> ~/.gnupg/gpg-agent.conf
2727
echo "pinentry-mode loopback" >> ~/.gnupg/gpg.conf
28-
29-
- name: 🔑 List GPG keys
30-
run: gpg --list-secret-keys --keyid-format LONG
31-
32-
- name: 🔨 Build with Maven (GPG Enabled)
33-
run: |
34-
mvn -B clean install \
35-
-Dgpg.passphrase="${{ secrets.GPG_PASSPHRASE }}" \
36-
-Dgpg.pinentry.mode=loopback
3728
env:
3829
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
30+
31+
- name: Build with Maven (GPG Enabled)
32+
run: mvn -B clean install -Dgpg.passphrase="${{ secrets.GPG_PASSPHRASE }}" -Dgpg.pinentry.mode=loopback

0 commit comments

Comments
 (0)