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 d9d0f3f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
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: |
mkdir -p ~/.gradle
echo "${{ secrets.SIGNING_SECRET_KEY_RING }}" | base64 -d > ~/.gradle/secring.gpg
ls -al ~/.gradle/secring.gpg

0 comments on commit d9d0f3f

Please sign in to comment.