Skip to content

Commit

Permalink
Push a test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
supl committed Dec 26, 2023
1 parent 3bf1f41 commit 7a4d5e7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Publish the Java Package to Maven Central Repository and upload tool to GitHub

on:
push:
branches:

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Test if we can see the secring file
run: |
echo "${{ secrets.SIGNING_SECRET_KEY_RING }}" | base64 -d > /tmp/secring.gpg # ~/.gradle/secring.gpg
ls -al /tmp/secring.gpg # ~/.gradle/secring.gpg

0 comments on commit 7a4d5e7

Please sign in to comment.