Skip to content

Commit

Permalink
Added action for create GitHub release
Browse files Browse the repository at this point in the history
  • Loading branch information
YauhenDaresay committed May 15, 2024
1 parent e9dce13 commit 742fb0a
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/create_github_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Create Github Release
on: push
jobs:
build:
name: Create Github Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Setup variables in local.properties
run: |
echo "signing_keyId=${{secrets.SIGNING_KEY_ID}}" > local.properties
echo "signing_password=${{secrets.SIGNING_PASSWORD}}" >> local.properties
echo "username=${{secrets.MAVEN_CENTRAL_USER_NAME}}" >> local.properties
echo "password=${{secrets.MAVEN_CENTRAL_PASSWORD}}" >> local.properties
- name: Setup gpg private key
run: |
echo "${{secrets.GPG_PRIVATE_KEY}}" > maven-secret-key.asc
- uses: pipe-cd/[email protected]
with:
release_file: '**/RELEASE'
token: ${{ secrets.GITHUB_TOKEN }}
5 changes: 5 additions & 0 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
tag: v1.0.4

commitExclude:
prefixes:
- "Merge pull request #"

0 comments on commit 742fb0a

Please sign in to comment.